17.12.2013, 02:58
Hello,
I am using a moving camera function on OnPlayerRequestClass, the problem is that when i try to enter the class selection after connecting it doest go to the class selection but instead just stays at a unknown position, but when i hit spawn, it spawns me and the main part is that when i go to the class selection by /kill and F4 it takes me to the correct class selection.
My Code
I am using a moving camera function on OnPlayerRequestClass, the problem is that when i try to enter the class selection after connecting it doest go to the class selection but instead just stays at a unknown position, but when i hit spawn, it spawns me and the main part is that when i go to the class selection by /kill and F4 it takes me to the correct class selection.
My Code
Код:
public OnPlayerRequestClass(playerid, classid) { SetPlayerPos(playerid, player_x,player_y,player_z); SetPlayerFacingAngle(playerid, player_angle); SetPlayerCameraPos(playerid, camera_x,camera_y,camera_z); SetPlayerCameraLookAt(playerid, player_x,player_y,player_z); ApplyAnimation(playerid,"DANCING","DNCE_M_B",4.0,1,0,0,0,-1); PlayerPlaySound(playerid,1097,-119.9460,23.1096,12.2238); if (PlayerInfo[playerid][SpawnDance]) PlayerInfo[playerid][SpawnTimer] = SetTimerEx("MoveCamera", moving_speed, true, "i", playerid); PlayerInfo[playerid][SpawnDance] = false; return 1; }