28.05.2010, 22:21
ai O erro esta nesse codigo por isso da esse erro ae tem alguma coisa em que o pawncc.exe nгo le ou da erro com esse codigos por favor me ajudar
Meu Codigo
Meu Codigo
pawn Код:
#include <a_samp>
new Skins[][] =
{
78,
79,
134,
135,
136,
137,
212,
239,
230
};
public OnGameModeInit()
{
SetGameModeText("Kichner Beta");
UsePlayerPedAnims();
AddPlayerClass(60, 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
return 1;
}
public OnPlayerRequestClass(playerid, classid);
{
new rnd = random(sizeof(Skins));
SetSpawnInfo(playerid, NO_TEAM, Skins[rnd][0], 1958.3783, 1343.1572, 15.3746, 269.1425, 0, 0, 0, 0, 0, 0);
SpawnPlayer(playerid);
return 1;
}
public OnPlayerRequestSpawn(playerid);
{
SpawnPlayer(playerid);
return 1;
}
public OnPlayerSpawn(playerid);
{
new raand = random(sizeof(Skins));
SetPlayerSkin(playerid, Skins[raand][0]);
return 1;
}