15.05.2009, 06:03
Hi all.
I wannted to add a Random Spawn in my script. I informed myself at https://sampwiki.blast.hk/wiki/Random. But when i compile it, pawn crashes. What did I do wrong? Please help me.
I wannted to add a Random Spawn in my script. I informed myself at https://sampwiki.blast.hk/wiki/Random. But when i compile it, pawn crashes. What did I do wrong? Please help me.
pawn Код:
#include <a_samp>
new iRandomNumber = random(25);
new Float:RandomSpawn[][4] =
{
{-2796.9854, 1224.8180, 20.5429, 192.0335},
{-2454.2170, 503.8759, 30.0790, 267.2932},
{-2669.7322, -6.0874, 6.1328, 89.8853}
}
main()
{
print("\n----------------------------------");
print(" Blank Gamemode by your name here");
print("----------------------------------\n");
}
public OnGameModeInit()
{
SetGameModeText("Blank Script");
AddPlayerClass(0, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraPos(playerid, 1958.3783, 1343.1572, 15.3746);
SetPlayerCameraLookAt(playerid, 1958.3783, 1343.1572, 15.3746);
return 1;
}
public OnPlayerSpawn(playerid)
{
new iRandom = random(sizeof(RandomSpawn));
//SetPlayerPos to the random spawn information
SetPlayerPos(playerid, RandomSpawn[iRandom][0], RandomSpawn[iRandom][1],RandomSpawn[iRandom][2]);
//SetPlayerFacingAngle to the random facing angle information
SetPlayerFacingAngle(playerid, RandomSpawn[iRandom][3]);
return 1;
}