01.08.2013, 05:32
Hello, i watched tut how to make TDM Gamemode but im gettin error:
Error:
But in 79 line is only
Where is prob?
Код:
public OnPlayerRequestClass(playerid, classid)
{
SetPlayerTeamFromClass(playerid, classid);
}
SetPlayerTeamFromClass(playerid, classid)// this is not a native function
{
switch(classid) // it switches through classids
{
case 0: // classid 0
{
gTeam[playerid] = TEAM_GROVE; // it sets the data of the player who selected the first team (in the gTeam array) to TEAM_GROVE
{
SetPlayerColor(playerid,TEAM_GROVE_COLOR);
}
}
case 1: // classid 1
{
gTeam[playerid] = TEAM_BALLAS; // it sets the data of the player who selected the second team (in the gTeam array) to TEAM_BALLAS
{
SetPlayerColor(playerid, TEAM_BALLAS_COLOR);
}
}
}
}
return 1;
}
Код:
.pwn(79) : error 010: invalid function or declaration
Код:
return 1;


