[Ajuda] comandos para de funcionar - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] comandos para de funcionar (
/showthread.php?tid=521053)
comandos para de funcionar -
CrazyHelp - 21.06.2014
galera criei esses 2 comandos aqui, mas ele para de funcionar, ontem tava pegando jб hoje fui testar nгo estava pegando, alguem poderia me falar oque a de errado ?
pawn Код:
if(strcmp(cmdtext, "/mf", true) == 0)
if(dini_Int(file, "Profissao") == MotoqueiroFantasma || dini_Int(file, "aAdmin") == 1)
{
if(GetVehicleModel(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;
}
if(strcmp(cmdtext, "/dmf", true) == 0)
if(dini_Int(file, "Profissao") == MotoqueiroFantasma || dini_Int(file, "aAdmin") == 1)
{
if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 463)
{
DestroyObject(fogo);
RemovePlayerAttachedObject(playerid, fogo);
SetPlayerSkin(playerid, 181);
SendClientMessage(playerid, -1, "Vocк Voltou ao Normal");
}
return 1;
}
Re: comandos para de funcionar -
MultiKill - 21.06.2014
Vocк esqueceu de abrir um chave e esqueceu de fechar duas chaves nos comandos.
pawn Код:
if(strcmp(cmdtext, "/mf", true) == 0)
{
if(dini_Int(file, "Profissao") == MotoqueiroFantasma || dini_Int(file, "aAdmin") == 1)
{
if(GetVehicleModel(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;
}
if(strcmp(cmdtext, "/dmf", true) == 0)
{
if(dini_Int(file, "Profissao") == MotoqueiroFantasma || dini_Int(file, "aAdmin") == 1)
{
if(GetVehicleModel(GetPlayerVehicleID(playerid)) == 463)
{
DestroyObject(fogo);
RemovePlayerAttachedObject(playerid, fogo);
SetPlayerSkin(playerid, 181);
SendClientMessage(playerid, -1, "Vocк Voltou ao Normal");
}
}
return 1;
}