30.12.2010, 12:00
Hey Guys,
So, i have somewhere in my script something like this:
And somewhere else (the timer) this:
Now, i already expected this to happen but i don't know how to fix it, when at HouseTimer it says it should make the player move again but it only does that for playerid 0, is there any way how i could make this work properly to all id's?
Best Regards,
SancheZ
So, i have somewhere in my script something like this:
pawn Код:
TogglePlayerControllable(playerid,false);//Preventing players falling true the objects at self made interiors.
SetTimer("HouseTimer",1000,false);
pawn Код:
public HouseTimer(playerid)
{
TogglePlayerControllable(playerid,true);
}
Best Regards,
SancheZ