help please` - 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)
+--- Thread: help please` (
/showthread.php?tid=354140)
help please` -
SamiHam - 25.06.2012
how can i add bots (mean massege type auto in my server )
how to add that massege to gamemode ?? what should i type?
Re: help please` -
Kindred - 25.06.2012
Rephrase your question. Do you mean an auto message thing, that shows up after a certain amount of seconds?
I figured you were talking about bots, but the thing in parentheses makes no sense.
Re: help please` -
tyler12 - 25.06.2012
pawn Код:
#include <a_samp>
public OnFilterScriptInit()
{
SetTimer("RandomMessage",60000,true);
return 1;
}
forward RandomMessage();
public RandomMessage()
{
SendClientMessageToAll(-1,"blablabla");
return 1;
}
Re: help please` -
SamiHam - 25.06.2012
i cant add this massege in gamemode? not to create new fs