25.06.2012, 19:53
how can i add bots (mean massege type auto in my server )
how to add that massege to gamemode ?? what should i type?
how to add that massege to gamemode ?? what should i type?
#include <a_samp>
public OnFilterScriptInit()
{
SetTimer("RandomMessage",60000,true);
return 1;
}
forward RandomMessage();
public RandomMessage()
{
SendClientMessageToAll(-1,"blablabla");
return 1;
}