CMD:aduty(playerid, params[]) { if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, -1, "This is an admin only command!"); { if(PlayerInfo[playerid][pAdminDuty] == 0) { SendClientMessageEx(playerid, COLOR_YELLOW, "You are now on administrative duty! Remember to check /reports!"); PlayerInfo[playerid][pAdminDuty] = 1; SetPlayerHealth(playerid, 100000); SetPlayerArmour(playerid, 100000); SetPlayerColor(playerid, COLOR_REALRED); //SetPlayerSkin(playerid, 294); - Commented by Voltage AdminMode[playerid] = Create3DTextLabel("{FFFF00}Administrator on duty!\n{FF1515}Do not Attack!",0xF600F6FF,30.0,40.0,50.0,40.0,0); Attach3DTextLabelToPlayer(AdminMode[playerid],playerid,0.0,0.0,0.5); new string[128]; format(string, sizeof(string), "Administrator %s(ID %d) is now on Admin Duty!", GetPlayerNameEx(playerid), playerid); ABroadCast(COLOR_YELLOW, string, 1); } else { SendClientMessageEx(playerid, COLOR_RED, "You are now off admin duty!"); //SetPlayerName(playerid, PlayerInfo[playerid][pNormalName]); Delete3DTextLabel(AdminMode[playerid]); SetPlayerHealth(playerid, 100); SetPlayerArmour(playerid, 0); SetPlayerToTeamColor(playerid); //SetPlayerSkin(playerid, 299); - Commented by Voltage PlayerInfo[playerid][pAdminDuty] = 0; new string[128]; format(string, sizeof(string), "Administrator %s(ID %d) is now Off Admin Duty! ( Leave the Admin to Roleplay )", GetPlayerNameEx(playerid), playerid); ABroadCast(COLOR_YELLOW, string, 1); } } return 1; }
C:\Users\Cris\Desktop\0.3z Server\Philippines Roleplay (2014)\gamemodes\PHRP_V1.1.pwn(44427) : warning 213: tag mismatch C:\Users\Cris\Desktop\0.3z Server\Philippines Roleplay (2014)\gamemodes\PHRP_V1.1.pwn(44427) : warning 202: number of arguments does not match definition Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 2 Warnings.
DeletePlayer3DTextLabel(AdminMode[playerid]);
@ChristianIvann use this
http://forum.sa-mp.com/showthread.ph...77#post2983577 +rep if i help u EDIT: That's only a warnings don't worry.. ur script will be compiled even if there is a warnings |
AdminMode[playerid] = CreatePlayer3DTextLabel(playerid,"Admin\nON DUTY",0x008080FF,X,Y,Z,40.0);
AdminMode[playerid] = CreateDynamic3DTextLabel("{FFFF00}Administrator on duty!\n{FF1515}Do not Attack!", 0xF600F6FF, 0, 0, -20, 25, playerid);
Streamer_SetFloatData(STREAMER_TYPE_3D_TEXT_LABEL, AdminMode[playerid] , E_STREAMER_ATTACH_OFFSET_Z, 0.25);
Delete3DTextLabel(AdminLabel[playerid]);
DeletePlayer3DTextLabel(playerid, AdminMode[playerid]);
CMD:aduty(playerid, params[])
{
if(PlayerInfo[playerid][pAdmin] < 2) return SendClientMessage(playerid, -1, "This is an admin only command!");
if(!PlayerInfo[playerid][pAdminDuty])
{
SendClientMessageEx(playerid, COLOR_YELLOW, "You are now on administrative duty! Remember to check /reports!");
PlayerInfo[playerid][pAdminDuty] = 1;
SetPlayerHealth(playerid, (Float:0x7F800000));
SetPlayerArmour(playerid, (Float:0x7F800000));
SetPlayerColor(playerid, COLOR_REALRED);
//SetPlayerSkin(playerid, 294); - Commented by Voltage
AdminMode[playerid] = Create3DTextLabel("Administrator on duty!\n{FF1515}Do not Attack!", 0xFFFF00FF, 30.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(AdminMode[playerid], playerid, 0.0, 0.0, 0.5);
new string[128];
format(string, sizeof(string), "Administrator %s(ID %d) is now on Admin Duty!", GetPlayerNameEx(playerid), playerid);
ABroadCast(COLOR_YELLOW, string, 1);
}
else if(PlayerInfo[playerid][pAdminDuty])
{
PlayerInfo[playerid][pAdminDuty] = 0;
SendClientMessageEx(playerid, COLOR_RED, "You are now off admin duty!");
//SetPlayerName(playerid, PlayerInfo[playerid][pNormalName]);
SetPlayerHealth(playerid, 100);
SetPlayerArmour(playerid, 0);
SetPlayerToTeamColor(playerid);
//SetPlayerSkin(playerid, 299); - Commented by Voltage
Delete3DTextLabel(AdminMode[playerid]);
new string[128];
format(string, sizeof(string), "Administrator %s(ID %d) is now Off Admin Duty! ( Leave the Admin to Roleplay )", GetPlayerNameEx(playerid), playerid);
ABroadCast(COLOR_YELLOW, string, 1);
}
return 1;
}
//Under OnPlayerSpawn...
if(PlayerInfo[playerid][pAdminDuty]) Attach3DTextLabelToPlayer(AdminMode[playerid], playerid, 0.0, 0.0, 0.5);
//Under OnPlayerDisconnect...
if(PlayerInfo[playerid][pAdminDuty])
{
Delete3DTextLabel(AdminMode[playerid]);
PlayerInfo[playerid][pAdminDuty] = false;
}
new AdminMode[MAX_PLAYERS];
new Text3D:AdminMode[MAX_PLAYERS];