TDM help
#1

Hello, i watched tut how to make TDM Gamemode but im gettin error:
Код:
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;
}
Error:
Код:
.pwn(79) : error 010: invalid function or declaration
But in 79 line is only
Код:
return 1;
Where is prob?
Reply


Messages In This Thread
TDM help - by DJRebis - 01.08.2013, 05:32
Re: TDM help - by S0n1COwnsYou - 01.08.2013, 05:45
Re: TDM help - by DJRebis - 01.08.2013, 05:47

Forum Jump:


Users browsing this thread: 1 Guest(s)