26.02.2014, 17:43
No it isnt, because i have like
And it sets player position there without crashing after registration
PHP код:
if(dialogid == DIALOG_SPAWN)
{
if(response || !response)
{
for(new x;x<10000;x++)
{
new rand=random(300);
if(PlayerInfo[playerid][pSex] == 0)
{
if(IsValidSkin(rand))
{
PlayerInfo[playerid][pModel] = rand;
SetPlayerSkin(playerid, rand);
break;
}
}
else
{
if(IsFemaleSkin(rand))
{
PlayerInfo[playerid][pModel] = rand;
SetPlayerSkin(playerid, rand);
break;
}
}
}
SetPlayerPos(playerid, -1876.3914,49.9433,1057.1891);
SetPlayerInterior(playerid,14);
PlayerInfo[playerid][pTut] = 1;
gOoc[playerid] = 0; gNews[playerid] = 0; gFam[playerid] = 0;
TogglePlayerControllable(playerid, 1);
//SetCamBack(playerid);
DeletePVar(playerid, "MedicBill");
SetPlayerColor(playerid,TEAM_HIT_COLOR);
SetCameraBehindPlayer(playerid);
PlayerInfo[playerid][pCarLic] = 0;
}
}