05.06.2017, 15:03
This should work:
If you don't understand the code, feel free to ask me an explanation of it.
PHP код:
SetTimer("message", RandomEx(1000, 10000), false);
forward message();
public message() // There should be no "playerid" in the brackets! If you want to use playerid, u gotta use SetTimerEx
{
print("test....");
}
RandomEx(min, max)
{
return random(max - min) + min;
}