View Single Post
dbondan
Junior Member
Join Date: Aug 2012
Old 08-29-2012 , 14:46   Re: [CSS + CS:GO] PUG Mod (ESEA Without The Fees)
Reply With Quote #15

Quote:
Originally Posted by shavit View Post
This plugin is great, I kinda fixed it. [Constant map changes didn't happen to me, please tell me how to trigger it, I'll fix.]
I removed the "say"/"say_team" commands [They don't allow you to gag a player] and switched them to sm_*, added plugin info, etc..
I just need a server to test all the changes I made. [There is also a bug with a SourceTV, if a SourceTV is on the server it doesn't count players, I should fix it too..]
Sounds promising, i don't know what is triggering it since i don't understand the language fully. I'll look into it while you do it too.

The "say"/"say_team" commands seemed to be working for me, it tells me to write /ready though the server switches the map after 3 sec (if that's what you meant to fix).
So, instead of...

// Hooks
RegConsoleCmd("say",SayPubHook);
RegConsoleCmd("say_team",SayTeamHook);
CreateTimer(1.0, OneSecCheck, _, TIMER_REPEAT);
}

...it's...

// Hooks
RegConsoleCmd("sm_say",SayPubHook);
RegConsoleCmd("sm_say_team",SayTeamHook);
CreateTimer(1.0, OneSecCheck, _, TIMER_REPEAT);
}

..?

Send me the file and i can test it on my server: 81.234.147.200:27016

Last edited by dbondan; 08-29-2012 at 14:51.
dbondan is offline