05.01.2016, 17:07
pawn Код:
if(dialogid == 10)
{
if(response)
{
if(listitem == 0)// org
{
if(PlayerInfo[playerid][pMembro] == 0 && PlayerInfo[playerid][pLider] == 0)
{
Delete3DTextLabel (civil);
new Text3D:civil = Create3DTextLabel("Civil", COP_COLOR, 30.0, 40.0, 50.0, 40.0, 0);
SendClientMessage(playerid, Azulzim, "Seu titulo estб sendo colocado...");
Attach3DTextLabelToPlayer(civil, playerid, 0.0, 0.0, 0.7);
}
if(PlayerInfo[playerid][pMembro] == 1 && PlayerInfo[playerid][pLider] == 1)
{
Delete3DTextLabel (pm);
new Text3D:Pm = Create3DTextLabel("Policia Militar", COP_COLOR, 30.0, 40.0, 50.0, 40.0, 0);
SendClientMessage(playerid, Azulzim, "Seu titulo estб sendo colocado...");
Attach3DTextLabelToPlayer(Pm, playerid, 0.0, 0.0, 0.7);
}
if(PlayerInfo[playerid][pMembro] == 2 && PlayerInfo[playerid][pLider] == 2)
{
Delete3DTextLabel (cv);
new Text3D:cv = Create3DTextLabel("Comando vermelho", COLOR_CV, 30.0, 40.0, 50.0, 40.0, 0);
SendClientMessage(playerid, Azulzim, "Seu titulo estб sendo colocado...");
Attach3DTextLabelToPlayer(cv, playerid, 0.0, 0.0, 0.7);
}
}
pawn Код:
if(listitem == 3)//remover
{
Delete3DTextLabel (cv);
Delete3DTextLabel (pm);
Delete3DTextLabel (civil);
SendClientMessage(playerid, Azulzim, "Vocк removeu seu rank");
}