04.07.2011, 05:17
Just checked that, and it's true. You need SetTimerEx anywhere.
Anyway, nice idea :P - It's different then mine. Mine was (I am re-making the GM) like this: When you are on a toilet, it'll apply an anim which will let the player sit. When you're not near a toilet when you use /gopee, the player'll just stand and pee (just like this one). In a vehicle, the player'll automatic stop (Vehicle Velocity ) and exit the vehicle to pee.
However, this one's also nice.
pawn Код:
forward toilet(playerid);
public toilet(playerid)
{
SendClientMessage(playerid, COLOR_RED, "Your blather is full, you need to go to the toilet quick!((You got 5 minutes))");
SetTimer("Hastogo", 300000, false);
}
forward Hastogo(playerid);
public Hastogo(playerid)
{
Anyway, nice idea :P - It's different then mine. Mine was (I am re-making the GM) like this: When you are on a toilet, it'll apply an anim which will let the player sit. When you're not near a toilet when you use /gopee, the player'll just stand and pee (just like this one). In a vehicle, the player'll automatic stop (Vehicle Velocity ) and exit the vehicle to pee.
However, this one's also nice.