CMD:b(playerid, params[]) { if(gPlayerLogged[playerid] == 0) { SendClientMessage(playerid, COLOR_GREY, "You're not logged in."); return 1; } if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "Perdorimi: /b [local ooc chat]"); if(AntiAdv(playerid, params)) return 1; new string[128]; if(PlayerInfo[playerid][pMask] == 1) { format(string,sizeof(string), "Stranger says: (( %s ))", params); } else { format(string, sizeof(string), "%s says: (( %s ))", GetPlayerNameEx(playerid), params); } ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_FADE4,COLOR_FADE5); return 1; }
CMD:b(playerid, params[]) { if(gPlayerLogged[playerid] == 0) { SendClientMessage(playerid, COLOR_GREY, "You're not logged in."); return 1; } if(isnull(params)) return SendClientMessage(playerid, COLOR_WHITE, "Perdorimi: /b [local ooc chat]"); if(AntiAdv(playerid, params)) return 1; new string[128]; if(PlayerInfo[playerid][pMask] == 1) { format(string,sizeof(string), "Stranger says: (( %s ))", params); } else { format(string, sizeof(string), "%s says: (( %s ))", GetPlayerNameEx(playerid), params); } ProxDetector(20.0, playerid, string,COLOR_FADE1,COLOR_FADE2,COLOR_FADE3,COLOR_F ADE4,COLOR_FADE5); if(!PlayerData[playerid][pMask]) format(string, sizeof(string), "%s %s says: (( %s ))", (PlayerData[playerid][pAdmin]) ? ("{hexcode}"), GetPlayerNameEx(playerid), params); return 1; } |