14.07.2010, 13:00
Well I kinda don't understand you but try this under OnPlayerConnect :
You get my point
Why set a timer?
I tried it without a timer just plain put the Camerapos under on connect,
didn't work :P so set a timer
pawn Code:
public OnPlayerConnect(playerid
{
SetTimerEx("LOL", 1000/10, false, "i", playerid)
return 1;
}
forward LOL(playerid);
public LOL(playerid)
{
SetCameraPos(....)
....
return 1;
}
Why set a timer?
I tried it without a timer just plain put the Camerapos under on connect,
didn't work :P so set a timer