Need help with bugging Timers, Checkpoints and SendClientMessage - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Need help with bugging Timers, Checkpoints and SendClientMessage (
/showthread.php?tid=142137)
Need help with bugging Timers, Checkpoints and SendClientMessage -
Jochemd - 17.04.2010
Hello,
We got in out server some strange bugs. For example: We use multiple timers and they don't work all. When we use SendClientMessage in a timer, it shows up for all players. Like SendClientMessageToAll.
Then, we got some checkpoints. Some of the checkpoints are stored in a filterscript and some in a gamemode. They overlap each other. They don't use the same ID's. Do we have to add them all in one script, the gamemode?
I hope someone knows this bug and knows how to fix it to. If you want script, ask it and I'll PM you.
Regards,
Jochemd, Assyria
Re: Need help with bugging Timers, Checkpoints and SendClientMessage - Micko9 - 17.04.2010
same problem . Anyone?!?
Re: Need help with bugging Timers, Checkpoints and SendClientMessage -
bpeterson - 17.04.2010
Well, first of all, using too much timers will f*ck your server up. Do not use too much timers, use main timers and use variables.
Yes, filterscripts can f*ck your server up too. (That's why I don't use filterscripts)
Re: Need help with bugging Timers, Checkpoints and SendClientMessage -
Jochemd - 17.04.2010
What are main timers?
Re: Need help with bugging Timers, Checkpoints and SendClientMessage -
bpeterson - 17.04.2010
Like:
SetTimer("Main1",1000,1);
SetTimer("Main2",2000,1);
SetTimer("Main3",3000,1);
Re: Need help with bugging Timers, Checkpoints and SendClientMessage -
Assyria - 23.04.2010
What kind of amount you think is the maximum amount of timers, which after they are going to start bugging?