10.06.2013, 19:35
(
Последний раз редактировалось migliore9; 19.06.2013 в 20:51.
Причина: Deleted
)
DELETED
#include <a_samp>
stock PlayerDynamicPos(playerid,Float:x,Float:y,Float:z)
{
TogglePlayerControllable(playerid, 0);
SetPlayerPos(playerid,Float:x,Float:y,Float:z);
SetPlayerHealth(playerid,100000000);
SetTimer("TimerPos",5000,false);
}
forward TimerPos(playerid,Float:x,Float:y,Float:z);
public TimerPos(playerid,Float:x,Float:y,Float:z)
{
TogglePlayerControllable(playerid, 1);
SetPlayerHealth(playerid,100);
}
#include <a_samp>
stock PlayerDynamicPos(playerid,Float:x,Float:y,Float:z)
{
TogglePlayerControllable(playerid, 0);
SetPlayerPos(playerid,Float:x,Float:y,Float:z);
SetTimerEx("TimerPos",5000,false,"d",playerid);
return 1;
}
forward TimerPos(playerid);
public TimerPos(playerid)
{
TogglePlayerControllable(playerid, 1);
return 1;
}