Author Topic: Adverts, min player votes, and chattime not working  (Read 6287 times)

0 Members and 1 Guest are viewing this topic.

Offline Frrz

  • Jr. Member
  • **
  • Posts: 65
  • Karma: 0
    • Youtube ftw
Adverts, min player votes, and chattime not working
« on: March 17, 2010, 01:33:13 PM »
My advert's are not working... I put some stuff in and it doesn't work xD, and the only one that is working is i believe is the default one that I removed? Here is server.ini

Also the minivoteplayer whatever... for votemap isn't working... =-( so it always says i need like 3 people to change map =-(

Last thing is chattime... I don't want the antispam stuff... so i put it to 0.. and i still can't message really fast =-(


Code: [Select]
//Any of the settings in here can be added to the per-map configs.

ulx showMotd 1 // Set to 0 to disable showing motd on connect. Shows the file the cvar motdfile says to.

ulx addGimpSay "I'm a llama."
ulx addGimpSay "How do you fly?"
ulx addGimpSay "baaaaaaaaaah."
ulx addGimpSay "Llama power!"
ulx addGimpSay "Llamas are the coolest!"
ulx addGimpSay "What's that gun to move stuff?"


ulx chattime 0 // Players can only chat every x seconds (anti-spam). 0 to disable


// This is what the players will see when they join, set it to "" to disable.
// You can use %host% and %curmap% in your text and have it automagically parsed for you
ulx welcomemessage ""


// Adverts
// addCsayAdvert <msg> <r> <g> <b> <repeat_time> <length> [<group>]
// addAdvert <msg> <repeat_time> [<group>]
// addCsayAdvert puts adverts in the middle of the screen, addAdvert puts adverts in the text area.
// You can use %host%, %curmap%, and %ulx_version% in your message and have it automagically parsed for you.
// If you specify a group, adverts in that group will run sequentially instead of simultaneously. EX:
// ulx addAdvert "This message is run first" 10 a
// ulx addAdvert "This message is run second" 10 a

ulx addCsayAdvert "Currently Playing %host%." 255 117 144 300 10 Addone
ulx addAdvert "Want to change map? Type - !votemap - and check console." 30 Addone


// Please, if you have any compassion at all, leave this one in.


ulx logFile 1 // Log to file (Can still echo if off). This is a global setting, nothing will be logged to file with this off.
ulx logEvents 1 // Log events (player connect, disconnect, death)
ulx logChat 1 // Log player chat
ulx logSpawns 1 // Log when players spawn objects (props, effects, etc)
ulx logSpawnsEcho 1 // Echo spawns to players in server. 0 = off, 1 = Admins only, 2 = All players. (Echoes to console)
ulx logDir "ulx_logs" // The log dir under garrysmod/data.
ulx logEcho 2 // Echo mode
// Echo modes:
// 0 - OFF No output to players when an admin command is used
// 1 - ANONYMOUS Output to players similar to "(ADMIN) slapped Bob with 0 damage"
// 2 - FULL Output to players similar to "(ADMIN) Foo slapped Bob with 0 damage"



ulx rslotsMode 0
ulx rslots 2
ulx rslotsVisible 1 // When this is 0, sv_visiblemaxplayers will be set to maxplayers - slots_currently_reserved
//Modes:
//0 - Off
//1 - Keep # of slots reserved for admins, admins fill slots.
//2 - Keep # of slots reserved for admins, admins don't fill slots, they'll be freed when a player leaves.
//3 - Always keep 1 slot open for admins, kick the user with the shortest connection time if an admin joins.

//Difference between 1 and 2:
//I realize it's a bit confusing, so here's an example.
//On mode 1--
// You have maxplayers set to 10, rslots set to 2, and there are currently 8 non-admins connected.
// If a non-admin tries to join, they'll be kicked to keep the reserved slots open. Two admins join
// and fill the two reserved slots. When non-admins leave, the two admins will still be filling the
// two reserved slots, so another regular player can join and fill the server up again without being
// kicked by the slots system

//On mode 2--
// Same setup as mode 1, you have the two admins in the server and the server is full. Now, when a
// non-admin leaves the server, reserved slots will pick up the slot again as reserved. If a regular
// player tries to join and fill the server again, even though there are two admins connected, it will
// kick the regular player to keep the slot open

//So, the basic difference between these two is mode 1 will subtract currently connected admins from the slot
//pool, while mode 2 while always be attempting to reclaim slots if it doesn't currently have enough when
//players leave no matter how many admins are connected.

//rslotsVisible:
// If you set this variable to 0, ULX will automatically change sv_visiblemaxplayers for you so that if
// there are no regular player slots available in your server, it will appear that the server is full.
// The major downside to this is that admins can't connect to the server using the "find server" dialog
// when it appears full. Instead, they have to go to console and use the command "connect <ip>".
// NOTE THIS DOES NOT CHANGE YOUR MAXPLAYERS VARIABLE, ONLY HOW MANY MAXPLAYERS IT _LOOKS_ LIKE YOUR
// SERVER HAS. YOU CAN NEVER, EVER HAVE MORE PLAYERS IN YOUR SERVER THAN THE MAXPLAYERS VARIABLE.



ulx votemapEnabled 1 // Enable/Disable the entire votemap command
ulx votemapMintime 1 // Time after map change before votes count.
ulx votemapWaittime 1 // Time before a user must wait before they can change their vote.
ulx votemapSuccessratio 0.8 // Ratio of (votes for map)/(total players) needed to change map. (Rounds up)
ulx votemapMinvotes 1 // Number of minimum votes needed to change map (Prevents llamas). This supercedes the above convar on small servers.
ulx votemapVetotime 30 // Time in seconds an admin has after a successful votemap to veto the vote. Set to 0 to disable.
ulx votemapMapmode 2 // 1 = Use all maps but what's specified below, 2 = Use only the maps specified below.

ulx voteEcho 0 // 1 = Echo what every player votes (this does not apply to votemap). 0 = Don't echo

ulx votemap2Successratio 0.8 // Ratio of (votes for map)/(total players) needed to change map. (Rounds up)
ulx votemap2Minvotes 1 // Number of minimum votes needed to change map (Pevents llamas). This supercedes the above convar on small servers.

ulx votekickSuccessratio 0.6 // Ratio of (votes for kick)/(total players) needed to kick player. (Rounds up)
ulx votekickMinvotes 2 // Number of minimum votes needed to kick player (Pevents llamas). This supercedes the above convar on small servers.

ulx votebanSuccessratio 0.7 // Ratio of (votes for ban)/(total players) needed to ban player. (Rounds up)
ulx votebanMinvotes 3 // Number of minimum votes needed to ban player (Pevents llamas). This supercedes the above convar on small servers.

// If you'd like to add more maps, make separate lines for them all prefixed with "ulx votemapAddmap".

ulx votemapAddmap gm_excess_construct
ulx votemapAddmap gm_excess_waters
ulx votemapAddmap gm_round_construct_v2
ulx votemapAddmap gm_halos
ulx votemapAddmap gm_superstruct
ulx votemapAddmap gm_xhizors

// You can also add forced downloads here. Make sure you put quotes around the path/filename, and take out the comment string '//'.
// Add as many as you want. You can also add these to your map- or game-specific files.
// format: ulx addForcedDownload <file/folder> [<recursive>]
//ulx addForcedDownload "sound/cheeseman.mp3"
// You can add a folder to add all files inside that folder. If recursive is 1 it will also add all files from any sub-folders.
//ulx addForcedDownload "sound/my_music" 1





Offline JamminR

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 8096
  • Karma: 390
  • Sertafide Ulysses Jenius
    • Team Ulysses [ULib/ULX, other fine releases]
Re: Adverts, min player votes, and chattime not working
« Reply #1 on: March 17, 2010, 04:41:31 PM »
Are you using ULib and ULX SVN?
The server.ini file has majorly changed... parts of it were moved to /data/ulx.
The file example you show looks like old format (which wouldn't work too well in SVN)
If using SVN, take a copy of your addons/ulx/server.ini, paste it into gmod/cfg/server.ini , then try re-editing it.
Then also see your addons/ulx/data/ulx folder, take copies of those txt files, place them in gmod/data/ulx , and edit any you need there.
Report back any errors/details if that doesn't fix it.

If NOT using SVN... any errors at server startup?
"Though a program be but three lines long, someday it will have to be maintained." -- The Tao of Programming

Offline Frrz

  • Jr. Member
  • **
  • Posts: 65
  • Karma: 0
    • Youtube ftw
Re: Adverts, min player votes, and chattime not working
« Reply #2 on: March 17, 2010, 05:11:29 PM »
I am not using the svn .. and I'm not sure about error's I will have to check





Offline Frrz

  • Jr. Member
  • **
  • Posts: 65
  • Karma: 0
    • Youtube ftw
Re: Adverts, min player votes, and chattime not working
« Reply #3 on: March 18, 2010, 07:14:41 PM »
This is what comes up when starting the server... I know theres a bunch of unknow commands .. Thats due to my lazyness in removing them... xDD

But anyway here...

---

Assmod might be conflicting with it? Idk, I just have assmod mostly for the prop protection.. So if you could tell me a prop protection for ulx.. Then I could get rid of ass mod...

And if there is a plugin/mod/.. whatever... that has the easy to use menu's like Assmod for ulx that would be good as well... ( XD me and my picky-ness )

Also.. does Ulx have a psygun players thing?? Wher you can pick up other players with your physgun (only admins can of course xD)

---

Code: [Select]
250.1 fps  0/16 on map     gm_construct
Unknown command "sm_advertisements_file"
Unknown command "sm_advertisements_interval"
--------------------------------------------------------
sv_pure set to 1.
--------------------------------------------------------
Unknown command "mp_autoteambalance"
Unknown command "mp_disable_respawn_times"
Unknown command "walkOnWater"
Unknown command "mapcyclelist"
Unknown command "sbox_allownpcs"
Unknown command "sbox_playergod"
Unknown command "sbox_admin_nolimits"
Unknown command "sbox_maxsents"
Unknown command "sbox_maxwire_wheels"
Unknown command "sbox_maxwire_waypoints"
Unknown command "sbox_maxwire_values"
Unknown command "sbox_maxwire_twoway_radioes"
Unknown command "sbox_maxwire_turret"
Unknown command "sbox_maxwire_thrusters"
Unknown command "sbox_maxwire_target_finders"
Unknown command "sbox_maxwire_speedometers"
Unknown command "sbox_maxwire_emitters"
Unknown command "sbox_maxwire_simple_explosive"
Unknown command "sbox_maxwire_sensors"
Unknown command "sbox_maxwire_screens"
Unknown command "sbox_maxwire_relays"
Unknown command "sbox_maxwire_rangers"
Unknown command "sbox_maxwire_radioes"
Unknown command "sbox_maxwire_sockets"
Unknown command "sbox_maxwire_plugs"
Unknown command "sbox_maxwire_pixels"
Unknown command "sbox_maxwire_panels"
Unknown command "sbox_maxwire_outputs"
Unknown command "sbox_maxwire_oscilloscopes"
Unknown command "sbox_maxwire_locators"
Unknown command "sbox_maxwire_lights"
Unknown command "sbox_maxwire_inputs"
Unknown command "sbox_maxwire_indicators"
Unknown command "sbox_maxwire_hoverballs"
Unknown command "sbox_maxwire_gyroscopes"
Unknown command "sbox_maxwire_gpss"
Unknown command "sbox_maxwire_gate_trigs"
Unknown command "sbox_maxwire_gate_times"
Unknown command "sbox_maxwire_gate_selections"
Unknown command "sbox_maxwire_gate_memorys"
Unknown command "sbox_maxwire_gate_logics"
Unknown command "sbox_maxwire_gate_comparisons"
Unknown command "sbox_maxwire_gates"
Unknown command "sbox_maxwire_explosive"
Unknown command "sbox_maxwire_dual_inputs"
Unknown command "sbox_maxwire_detonators"
Unknown command "sbox_maxwire_buttons"
Unknown command "sbox_maxwire_adv_inputs"
Unknown command "toolmode_allow_axis"
Unknown command "toolmode_allow_balloon"
Unknown command "toolmode_allow_ballsocket"
Unknown command "toolmode_allow_button"
Unknown command "toolmode_allow_camera"
Unknown command "toolmode_allow_colour"
Unknown command "toolmode_allow_duplicator"
Unknown command "toolmode_allow_dynamite"
Unknown command "toolmode_allow_elastic"
Unknown command "toolmode_allow_emitter"
Unknown command "toolmode_allow_example"
Unknown command "toolmode_allow_eyeposer"
Unknown command "toolmode_allow_faceposer"
Unknown command "toolmode_allow_finger"
Unknown command "toolmode_allow_hoverball"
Unknown command "toolmode_allow_hydraulic"
Unknown command "toolmode_allow_ignite"
Unknown command "toolmode_allow_inflator"
Unknown command "toolmode_allow_keepuprigh"
Unknown command "toolmode_allow_lamp"
Unknown command "toolmode_allow_leafblower"
Unknown command "toolmode_allow_light"
Unknown command "toolmode_allow_magnetise"
Unknown command "toolmode_allow_material"
Unknown command "toolmode_allow_motor"
Unknown command "toolmode_allow_muscle"
Unknown command "toolmode_allow_nail"
Unknown command "toolmode_allow_nocollide"
Unknown command "toolmode_allow_paint"
Unknown command "toolmode_allow_physprop"
Unknown command "toolmode_allow_pulley"
Unknown command "toolmode_allow_remover"
Unknown command "toolmode_allow_rope"
Unknown command "toolmode_allow_rtcamera"
Unknown command "toolmode_allow_slider"
Unknown command "toolmode_allow_spawner"
Unknown command "toolmode_allow_statue"
Unknown command "toolmode_allow_thruster"
Unknown command "toolmode_allow_trails"
Unknown command "toolmode_allow_turret"
Unknown command "toolmode_allow_weld"
Unknown command "toolmode_allow_weld_ez"
Unknown command "toolmode_allow_wheel"
Unknown command "toolmode_allow_winch"
Unknown command "toolmode_allow_wire_data_"
Unknown command "toolmode_allow_wire_debug"
Unknown command "toolmode_allow_wire_emark"
Unknown command "toolmode_allow_wire_explo"
Unknown command "toolmode_allow_wire_expre"
Unknown command "toolmode_allow_wire_eyepo"
Unknown command "toolmode_allow_wire_fx_em"
Unknown command "toolmode_allow_wire_gate_"
Unknown command "toolmode_allow_wire_gps"
Unknown command "toolmode_allow_wire_gpu"
Unknown command "toolmode_allow_wire_gpuli"
Unknown command "toolmode_allow_wire_graph"
Unknown command "toolmode_allow_wire_gyros"
Unknown command "toolmode_allow_wire_hdd"
Unknown command "toolmode_allow_wire_hudin"
Unknown command "toolmode_allow_wire_hydra"
Unknown command "toolmode_allow_wire_keybo"
Unknown command "toolmode_allow_wire_las_r"
Unknown command "toolmode_allow_wire_latch"
Unknown command "toolmode_allow_wire_locat"
Unknown command "toolmode_allow_wire_naile"
Unknown command "toolmode_allow_wire_namer"
Unknown command "toolmode_allow_wire_numpa"
Unknown command "toolmode_allow_wire_outpu"
Unknown command "toolmode_allow_wire_plug"
Unknown command "toolmode_allow_wire_pod"
Unknown command "toolmode_allow_wire_radio"
Unknown command "toolmode_allow_wire_range"
Unknown command "toolmode_allow_wire_relay"
Unknown command "toolmode_allow_wire_senso"
Unknown command "toolmode_allow_wire_spawn"
Unknown command "toolmode_allow_wire_targe"
Unknown command "toolmode_allow_wire_textr"
Unknown command "toolmode_allow_wire_twowa"
Unknown command "toolmode_allow_wire_use"
Unknown command "toolmode_allow_wire_value"
Unknown command "toolmode_allow_wire_vehic"
Unknown command "toolmode_allow_wire_vthru"
Unknown command "toolmode_allow_wire_water"
Unknown command "toolmode_allow_wire_waypo"
Unknown command "toolmode_allow_wire_winch"
Unknown command "toolmode_allow_wire_wirel"
Unknown command "toolmode_allow_ass_owner"
Unknown command "sv_rollangle"
Unknown command "sv_unlag_fixstuck"
KeyValues Error: RecursiveLoadFromBuffer:  got EOF instead of keyname in file pu
re_server_whitelist.txt
whitelist,
Caching file CRCs for pure server...
Finished caching file CRCs for pure server in 0 seconds.
Lua initialized (Lua 5.1)
======== Installing Table (De)Serialiser Module | ver: 1.4 ========
///////////////////////////////
//      Ulysses Library      //
///////////////////////////////
// Loading...                //
//  shared/defines.lua       //
//  server/hook.lua          //
//  server/gamemode_hooks.lua//
//  shared/misc.lua          //
//  shared/util.lua          //
//  shared/table.lua         //
//  shared/player.lua        //
//  server/player.lua        //
//  shared/messages.lua      //
//  shared/concommand.lua    //
//  server/concommand.lua    //
//  server/util.lua          //
//  shared/sh_ucl.lua        //
//  server/ucl.lua           //
//  server/phys.lua          //
//  server/player_ext.lua    //
//  server/entity_ext.lua    //
// Load Complete!            //
///////////////////////////////
[ULIB] Loading SHARED module: ulx_init.lua
///////////////////////////////
//       ULX Admin Mod       //
///////////////////////////////
// Loading...                //
//  sh_defines.lua           //
//  lib.lua                  //
//  base.lua                 //
//  log.lua                  //
//  MODULE: chat.lua         //
//  MODULE: fun.lua          //
//  MODULE: menus.lua        //
//  MODULE: rcon.lua         //
//  MODULE: slots.lua        //
//  MODULE: teleport.lua     //
//  MODULE: toolmode.lua     //
//  MODULE: user.lua         //
//  MODULE: util.lua         //
//  MODULE: vote.lua         //
//  MODULE: votemap.lua      //
//  MODULE: userhelp.lua     //
//  end.lua                  //
// Load Complete!            //
///////////////////////////////
================================
===  Wire  2079   Installed  ===
================================
======== Beam NetVars Lib v0.71 Installed ========
Couldn't include file 'wire/GPULib.lua' (File not found)
ERROR! Module 'zlib_b64' not found!
==== Advanced Duplicator v.1.72 shared module installed! ====
Added EntCheckHook: AdvDupe_NoItems
Added EntCheckHook: AdvDupe_DisallowedClasses
Added EntCheckHook: AdvDupe_ModelCheck
==== Advanced Duplicator v.1.85 server module installed! ====
Registering gamemode 'sandbox' derived from 'base'
ScriptEnforce is disabled
Loading Wire Tools
ASS Plugin -> plugins/ass_burn.lua
ASS Plugin -> plugins/ass_cleardecals.lua
ASS Plugin -> plugins/ass_default_writer.lua
ASS Plugin -> plugins/ass_disablekill.lua
ASS Plugin -> plugins/ass_disconnectcleanup.lua
ASS Plugin -> plugins/ass_freeze.lua
ASS Plugin -> plugins/ass_gimp.lua
ASS Plugin -> plugins/ass_god.lua
ASS Plugin -> plugins/ass_health.lua
ASS Plugin -> plugins/ass_jail.lua
ASS Plugin -> plugins/ass_kill.lua
ASS Plugin -> plugins/ass_map.lua
ASS Plugin -> plugins/ass_mute.lua
ASS Plugin -> plugins/ass_noclip.lua
ASS Plugin -> plugins/ass_notice.lua
ASS Plugin -> plugins/ass_pickupplayers.lua
ASS Plugin -> plugins/ass_ragdoll.lua
ASS Plugin -> plugins/ass_sandbox_cleanup.lua
ASS Plugin -> plugins/ass_sandbox_limits.lua
ASS Plugin -> plugins/ass_sandbox_options.lua
ASS Plugin -> plugins/ass_sandbox_propprotect.lua
ASS Plugin -> plugins/ass_sandbox_spamprotect.lua
ASS Plugin -> plugins/ass_sandbox_toollimit.lua
ASS Plugin -> plugins/ass_slap.lua
ASS Plugin -> plugins/ass_teleport.lua
ASS Plugin -> plugins/ass_voicemute.lua
ASS Plugin -> plugins/ass_weapons.lua
Executing dedicated server config file
"daf_version" = "Version 3 of SourceOP.com DoS Attack Fix Plugin"
 notify
 - The version of the DoS Attack Fix plugin
Unknown command "sm_advertisements_enabled"
Unknown command "sm_advertisements_file"
Unknown command "sm_advertisements_interval"
--------------------------------------------------------
sv_pure value unchanged (current value is 1).
--------------------------------------------------------
Unknown command "mp_autoteambalance"
Unknown command "mp_disable_respawn_times"
Unknown command "mapcyclelist"
Unknown command "sbox_allownpcs"
Unknown command "sbox_playergod"
Unknown command "sbox_maxsents"
Unknown command "sbox_maxwire_turret"
Unknown command "sbox_maxwire_relays"
Unknown command "sbox_maxwire_sockets"
Unknown command "sbox_maxwire_plugs"
Unknown command "toolmode_allow_keepuprigh"
Unknown command "toolmode_allow_wire_data_"
Unknown command "toolmode_allow_wire_debug"
Unknown command "toolmode_allow_wire_emark"
Unknown command "toolmode_allow_wire_explo"
Unknown command "toolmode_allow_wire_expre"
Unknown command "toolmode_allow_wire_eyepo"
Unknown command "toolmode_allow_wire_fx_em"
Unknown command "toolmode_allow_wire_gate_"
Unknown command "toolmode_allow_wire_gpuli"
Unknown command "toolmode_allow_wire_graph"
Unknown command "toolmode_allow_wire_gyros"
Unknown command "toolmode_allow_wire_hudin"
Unknown command "toolmode_allow_wire_hydra"
Unknown command "toolmode_allow_wire_keybo"
Unknown command "toolmode_allow_wire_las_r"
Unknown command "toolmode_allow_wire_locat"
Unknown command "toolmode_allow_wire_naile"
Unknown command "toolmode_allow_wire_namer"
Unknown command "toolmode_allow_wire_numpa"
Unknown command "toolmode_allow_wire_outpu"
Unknown command "toolmode_allow_wire_plug"
Unknown command "toolmode_allow_wire_range"
Unknown command "toolmode_allow_wire_relay"
Unknown command "toolmode_allow_wire_senso"
Unknown command "toolmode_allow_wire_spawn"
Unknown command "toolmode_allow_wire_targe"
Unknown command "toolmode_allow_wire_textr"
Unknown command "toolmode_allow_wire_twowa"
Unknown command "toolmode_allow_wire_use"
Unknown command "toolmode_allow_wire_vehic"
Unknown command "toolmode_allow_wire_vthru"
Unknown command "toolmode_allow_wire_water"
Unknown command "toolmode_allow_wire_waypo"
Unknown command "toolmode_allow_wire_wirel"
Adding master server 72.165.61.151:27015
Adding master server 72.165.61.151:27014
Connection to Steam servers successful.
   VAC secure mode is activated.
« Last Edit: March 18, 2010, 07:52:52 PM by Frrz »





Offline JamminR

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 8096
  • Karma: 390
  • Sertafide Ulysses Jenius
    • Team Ulysses [ULib/ULX, other fine releases]
Re: Adverts, min player votes, and chattime not working
« Reply #4 on: March 18, 2010, 08:02:25 PM »
I've heard of people using assmod with ULX with no problems, but, I don't know if they've had to disable/change any of it's chat commands (or if it has any)
If it has them, they most definitely could conflict.
When a player attempts to do ulx chat commands, there are no server console errors?
I also see you're using a server whitelist...not sure how that works...it could prevent chat commands from running?

Anyway, from all that you've listed, I'm betting it's a mod conflict.
"Though a program be but three lines long, someday it will have to be maintained." -- The Tao of Programming

Offline Frrz

  • Jr. Member
  • **
  • Posts: 65
  • Karma: 0
    • Youtube ftw
Re: Adverts, min player votes, and chattime not working
« Reply #5 on: March 19, 2010, 03:15:12 AM »
There are no server errors when using a chat command...

Should I take out Assmod and see if things work?





Offline JamminR

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 8096
  • Karma: 390
  • Sertafide Ulysses Jenius
    • Team Ulysses [ULib/ULX, other fine releases]
Re: Adverts, min player votes, and chattime not working
« Reply #6 on: March 19, 2010, 03:40:14 PM »
When troubleshooting, removing other mods and adding them in one or two at a time is a good start.
Research your gmod whitelist too. Whitelists only allow certain files to run...it may be preventing some ulx server functionality
"Though a program be but three lines long, someday it will have to be maintained." -- The Tao of Programming

Offline Frrz

  • Jr. Member
  • **
  • Posts: 65
  • Karma: 0
    • Youtube ftw
Re: Adverts, min player votes, and chattime not working
« Reply #7 on: March 19, 2010, 05:08:55 PM »
I FIGURED IT OUT!! xD.. It was so simple...

As I was updating the server.cfg, I noticed I had the default server.ini file in the /cfg/ directory. I don't know what I had a copy of it there but, I did >.>. So I removed it, and everything works!!

I can't believe I missed something so simple.. xD

Thank you for your help!





Offline JamminR

  • Ulysses Team Member
  • Hero Member
  • *****
  • Posts: 8096
  • Karma: 390
  • Sertafide Ulysses Jenius
    • Team Ulysses [ULib/ULX, other fine releases]
Re: Adverts, min player votes, and chattime not working
« Reply #8 on: March 19, 2010, 07:38:12 PM »
You are supposed to place a copy of the server.ini file in gmod/cfg, then edit it.
This allows you to keep your settings the next time you update or re-install ULX.

If you've not edited that location though, yes, the server.ini settings from gmod/cfg would take precedence.
"Though a program be but three lines long, someday it will have to be maintained." -- The Tao of Programming