SA-MP Forums Archive
[PEDIDO] /GOD - 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: [PEDIDO] /GOD (/showthread.php?tid=261690)



[PEDIDO] /GOD - IILeonII - 14.06.2011

Pessoal Cassei no forum achei um filter script mas bugava os comandos todos alguem poderia posta um code ou filterscript com comando /god


Thank's


Re: [PEDIDO] /GOD - Shadoww5 - 14.06.2011

PHP код:
public OnPlayerCommandText(playeridcmdtext[])
{
    if(
strcmp(cmdtext"/god"true) == 0)
    {
        if(
IsPlayerAdmin(playerid))
        {
            
SendClientMessage(playerid, -1"GOD ATIVADO. SUA VIDA ESTБ FULL.");
            
SetPlayerHealth(playerid9999);
            return 
1;
        }
        return 
1;
    }
    return 
0;




Re: [PEDIDO] /GOD - JonathanFeitosa - 14.06.2011

pawn Код:
if(strcmp(cmdtext,"/god", true) == 0)
{
     SetPlayerHealth(playerid, 9000); // Quanto de sangue
     SendClientMessage(playerid, -1, "Sua Vida Estб Infinita.");
     return true;
}



Re: [PEDIDO] /GOD - Rodrigo. - 14.06.2011

PHP код:
if(strcmp(cmdtext"/godmod"true) == 0
{
if(
IsPlayerAdmin(playerid)){
SendClientMessage(playerid, -1,"Vocк agora estб em god mod");
SetPlayerHealth(playerid9999999);
return 
1;
}




Re: [PEDIDO] /GOD - KevinsL - 14.06.2011

pawn Код:
// defina:
new omg = 0;
forward OhMahGod(playerid);

// em OnPlayerCommandText
if(strcmp(cmd, "/imgod", true) == 0)
{
    if(omg == 0)
    {
        TimerGod = SetTimerEx("OhMahGod", 1000, true, "i", playerid);
        SendClientMessage(playerid, 0xFFFFFF, "Modo God Avitado! para desativar use o comando: /imgod");
        omg = 1;
    }
    else if(omg == 1)
    {
        SendClientMessage(playerid, 0xFFFFFF, "Modo God Desativado! para ativar use o comando: /imgod");
        KillTimer(TimerGod);
        omg = 0;
    }
        return 1;
}

// Final do GM:
public OhMahGod(playerid)
{
    return SetPlayerHealth(playerid, 999);
}



Re: [PEDIDO] /GOD - Shadoww5 - 14.06.2011

Quote:
Originally Posted by KevinsL
Посмотреть сообщение
pawn Код:
// defina:
new omg = 0;
forward OhMahGod(playerid);

// em OnPlayerCommandText
if(strcmp(cmd, "/imgod", true) == 0)
{
    if(omg == 0)
    {
        TimerGod = SetTimerEx("OhMahGod", 1000, true, "i", playerid);
        SendClientMessage(playerid, 0xFFFFFF, "Modo God Avitado! para desativar use o comando: /imgod");
        omg = 1;
    }
    else if(omg == 1)
    {
        SendClientMessage(playerid, 0xFFFFFF, "Modo God Desativado! para ativar use o comando: /imgod");
        KillTimer(TimerGod);
        omg = 0;
    }
}

// Final do GM:
public OhMahGod(playerid)
{
    return SetPlayerHealth(playerid, 999);
}
Para que esse timer ae ?

Nao tem a minima necessidade disto.

E esta array "omg" tambйm nгo й necessбria, o uso dela sу seria preciso caso vocк quisesse setar a saude novamente para 0 do jogador, o que nгo acontece.


Re: [PEDIDO] /GOD - KevinsL - 14.06.2011

Quote:
Originally Posted by Shadoww5
Посмотреть сообщение
Para que esse timer ae ?

Nao tem a minima necessidade disto.

E esta array "omg" tambйm nгo й necessбria, o uso dela sу seria preciso caso vocк quisesse setar a saude novamente para 0 do jogador, o que nгo acontece.
com o timer vai ficar setando a vida do cara q deu o comando atй ele desativar fazendo assim o modo "god"


Re: [PEDIDO] /GOD - Andrew_Guiga - 14.06.2011

й esta certo й melhor pq God й para nunca acabar e os outros codigos setam o life para 9000 e isso acaba e com timer nгo.


Re: [PEDIDO] /GOD - Ricop522 - 14.06.2011

pawn Код:
if(strcmp(cmd, "/godmod", true) == 0)
{
    if(GetPVarInt(playerid, "GOD") == 0)
    {
        SetPVarInt(playerid, "GOD", 1);
        SetPlayerHealth(playerid, 99999);
        //mensagem
    }
    if(GetPVarInt(playerid, "GOD") == 1)
    {
       SetPVarInt(playerid, "GOD", 0);
       SetPlayerHealth(playerid, 100);
       //Mensagem
    }
    return 0x01;
}


//public ONPlayerdeath

if(GetPVarInt(playerid, "GOD") == 1) SetPVarInt(playerid, "GOD", 0);
A sua array OMG й global.
O correto й
new omg[MAX_PLAYERS];


Re: [PEDIDO] /GOD - diretor7 - 14.06.2011

Faz um sistema baseando em outros GM RPG onde tem /trabalhar.