20.06.2014, 16:03
galera criei este comando agora, mas nгo esta funcionando, alguem poderia me falar qual erro ?
pawn Код:
if(!strcmp(cmdtext, "/mf", true, 3))
if(dini_Int(file, "Profissao") == MotoqueiroFantasma || dini_Int(file, "aAdmin") == 1)
{
if(GetPlayerVehicleID(playerid) == 463)
{
fogo = CreateObject(18688, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
AttachObjectToPlayer(fogo, playerid, 0.0, 0.0, -1.2, 0.0, 0.0, 0);
SendClientMessage(playerid, -1, "Vocк Esta Em Modo (MF)");
SetPlayerSkin(playerid, 181);
}
return 1;
}
pawn Код:
if(!strcmp(cmdtext, "/dmf", true, 3))
if(dini_Int(file, "Profissao") == MotoqueiroFantasma || dini_Int(file, "aAdmin") == 1)
{
if(GetPlayerVehicleID(playerid) == 463)
{
DestroyObject(fogo);
RemovePlayerAttachedObject(playerid, fogo);
SetPlayerSkin(playerid, 181);
SendClientMessage(playerid, -1, "Vocк Voltou ao Normal");
}
return 1;
}