2 Questions
#3

Answer for question #2.

Check if the VirtualWorld ID is correct..

pawn Код:
CreateDynamicObject(modelid, Float:x, Float:y, Float:z, Float:rx, Float:ry, Float:rz, worldid = -1, interiorid = -1, playerid = -1, Float:distance = 200.0);
Or try this intead...

pawn Код:
forward Unfreeze(playerid);

public Unfreeze(playerid)
{
      TogglePlayerControllable(playerid,1);
      return 1;
}
Then put this in a teleport command where you want the objects to be load.

Код:
    TogglePlayerControllable(playerid,0);
    SetTimerEx("Unfreeze",2000,0,"i",playerid);
For Example /sfa

pawn Код:
CMD:sfa(playerid, params[])
{
    SetPlayerPos(playerid, -1526.9530,-84.3569,18.5564);
    TogglePlayerControllable(playerid,0);
    SetTimerEx("Unfreeze",2000,0,"i",playerid);
}
Reply


Messages In This Thread
2 Questions - by NeverKnow - 27.09.2012, 09:14
Re: 2 Questions - by ToiletDuck - 27.09.2012, 09:24
Re: 2 Questions - by .v - 27.09.2012, 09:45
Re: 2 Questions - by NeverKnow - 27.09.2012, 18:23
Re: 2 Questions - by NeverKnow - 29.09.2012, 16:30
Re: 2 Questions - by M3mPHi$_S3 - 29.09.2012, 16:43
Re: 2 Questions - by NeverKnow - 01.10.2012, 14:50

Forum Jump:


Users browsing this thread: 2 Guest(s)