23.09.2011, 00:18
(
Последний раз редактировалось trapstar2020; 23.09.2011 в 00:20.
Причина: to much stuff
)
Trying to create a v.i.p system and cannot get the command for the team keep saying unidentified symbol "Team_Bronzevip" can someone help please
Код:
#include <a_samp>
#if defined FILTERSCRIPT
new gTeam[MAX_PLAYERS];
#define TEAM_Bronzevip
#define TEAM_Silvervip
#define TEAM_Goldvip
#define TEAM_Platinum_Vip
#define Bronze_vip_COLOUR 0xFF00FFFF
#define Silver_vip_COLOUR 0xFF00FFFF
#define Gold_vip_COLOUR 0xFF00FFFF
#define Platinum_vip_COLOUR 0xFF00FFFF
public OnPlayerCommandText(playerid, cmdtext[])
{
if(strcmp(cmdtext, "/pb") == 1)
{
(Team_Bronzevip(playerid));
SetPlayerHealth(playerid, 100.0);
SetPlayerArmour(playerid, 100.0);
GivePlayerWeapon(playerid, 26, 999999);
return 1;
}
return 1;
}
}


