03.08.2013, 12:44
I had the idea to create a rope to slide down.
Came up with something like this.
Will this cause lagg with the timer?
pawn Код:
public Slide(playerid)
{
if(Sliding[playerid] == 1)
{
new Float:X;
new Float:Y;
new Float:Z;
GetPlayerPos(playerid, X, Y, Z);
SetPlayerPos(playerid, X, Y, Z - 2.00);
SetTimerEx("Slide", 300, 0, "i", playerid);
}
return 1;
}
Will this cause lagg with the timer?