ajudem eu pf
#1

PHP код:
#include <a_samp>
#define LARANJA 0xFF9933AA
#define AGUA 0x7CFC00AA
#define VERDE 0x33AA33AA
public OnPlayerCommandText(playeridcmdtext[])
{
//----------------------------------------------------------------------------------------
    
if (strcmp("/vida"cmdtexttrue)==0)
    {
        
SetPlayerHealth(playerid100);
        
SendClientMessage(playeridLARANJA,"Vocк recebeu 100 de vida com sucesso!");
        return 
1;
    }
//----------------------------------------------------------------------------------------
    
if (strcmp("/colete"cmdtexttrue)==0)
    {
        
SetPlayerArmour(playerid100);
        
SendClientMessage(playeridAGUA,"Vocк recebeu 100 de colete com sucesso!");
        return 
1;
    }
//----------------------------------------------------------------------------------------
    
if (strcmp("/tec9"cmdtexttrue)==0)
    {
        
GivePlayerWeapon(playerid329999);
        
SendClientMessage(playeridLARANJA,"Vocк recebeu uma TEC9 com sucesso!");
        return 
1;
    }
    return 
0;

ele compila tudo certinho, na paz, mas quando eu vou jogar ele nгo funciona os comandos.
tipo eu digito /tec9 e ele nem da nada nem recebo as weapon
me ajudem pf
Reply
#2

Tente assim:
pawn Код:
#include <a_samp>
#define LARANJA 0xFF9933AA
#define AGUA 0x7CFC00AA
#define VERDE 0x33AA33AA

public OnPlayerCommandText(playerid, cmdtext[])
{
//----------------------------------------------------------------------------------------
    if (!strcmp(cmdtext,"/vida",true))
    {
        SetPlayerHealth(playerid, 100);
        SendClientMessage(playerid, LARANJA,"Vocк recebeu 100 de vida com sucesso!");
        return 1;
    }
//----------------------------------------------------------------------------------------
    if (!strcmp(cmdtext,"/colete",true))
    {
        SetPlayerArmour(playerid, 100);
        SendClientMessage(playerid, AGUA,"Vocк recebeu 100 de colete com sucesso!");
        return 1;
    }
//----------------------------------------------------------------------------------------
    if (!strcmp(cmdtext,"/tec9",true))
    {
        GivePlayerWeapon(playerid, 32, 9999);
        SendClientMessage(playerid, LARANJA,"Vocк recebeu uma TEC9 com sucesso!");
        return 1;
    }
    return 0;
}
Reply
#3

Aqui eu testei e funcionou!
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
//----------------------------------------------------------------------------------------
    if (!strcmp("/vida", cmdtext, true))
    {
        SetPlayerHealth(playerid, 100);
        SendClientMessage(playerid, -1,"Vocк recebeu 100 de vida com sucesso!");
        return 1;
    }
//----------------------------------------------------------------------------------------
    if (!strcmp("/colete", cmdtext, true))
    {
        SetPlayerArmour(playerid, 100);
        SendClientMessage(playerid, -1,"Vocк recebeu 100 de colete com sucesso!");
        return 1;
    }
//----------------------------------------------------------------------------------------
    if(!strcmp("/tec9", cmdtext, true))
    {
        GivePlayerWeapon(playerid, 32, 9999);
        SendClientMessage(playerid, -1,"Vocк recebeu uma TEC9 com sucesso!");
        return 1;
    }
    return 0;
}
talvez seja conflito.
Reply
#4

como assim conflito carol ? (posso te chama assim ? )
Reply
#5

sim pode me chamar de carol ( a maioria dos meus amigos chamam assim *-* ).

Conflito й algum FS ou GM dando conflito impedindo o funcionamento do mesmo.
Reply
#6

carol quando eu abro o samp-server(painel) bem no final ele diz

Script [gamemodes/rafa.amx]: Run time error 20: "invalid index parameter ,bad entry point>"

sera que nгo й isto?
Reply
#7

manda o rafa.pawn
para eu ver.
Reply
#8

PHP код:
#include <a_samp>
#define COLOR_RED 0xE60000FF
public OnPlayerConnect(playerid)
{
    
GameTextForPlayer(playerid,"San Andreas Departamento De Policial",3000,4);
      
SendClientMessage(playerid,COLOR_RED,"Bem Vindo ao Servidor De Treinamento SADP");
    return 
1;
}
    
public 
OnFilterScriptInit()
    {
     print(
"Bem vindo ao Servidor de treinamento SADP!");
     return 
1;
    }
    
    
public 
OnGameModeInit()
{
    
SetGameModeText("Brasil Elite Forever");
    
AddPlayerClass(271,1243.1405,-1693.4918,16.1974,179.3943,0,0,0,0,0,0);
    return 
1;

ta ai carol!
Reply
#9

Podia por um main pra tirar isso
pawn Код:
main()
{
print("Teste");
return 1;
}
Reply
#10

@Sobre o erro dos comandos ai,voce esta usando algum Fs?
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)