SA-MP Forums Archive
[URGENTE]Samp-server - 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: [URGENTE]Samp-server (/showthread.php?tid=284845)



[URGENTE]Samp-server - Rafael_. - 21.09.2011

galera o problema й o seguinte quando eu uso algum comando de teleporte meu server desliga e o samp-server fecha automaticamente... ajudem pf


Re: [URGENTE]Samp-server - Vai_Besta - 21.09.2011

poste seu comando ne....


Re: [URGENTE]Samp-server - Rafael_. - 21.09.2011

Qualquer teleporte que eu uso da o problema:

mas sгo esses ai:

PHP код:
#include <a_samp>
#define AMARELO    0xF5DEB3AA
#pragma tabsize 0
public OnPlayerCommandText(playeridcmdtext[])
{
    if (
strcmp("/policia"cmdtexttrue)==0)
    {
        
SetPlayerSkin(playerid283);
        
SetPlayerPos(playerid,1552.5591,-1675.4406,16.1953);
        
SetPlayerHealth(playerid100);
        
SetPlayerArmour(playerid100);
        
ResetPlayerWeapons(playerid);
        
GivePlayerWeapon(playerid249999);
        
GivePlayerWeapon(playerid269999);
        
GivePlayerWeapon(playerid329999);
        
SendClientMessage(playeridAMARELO,"Agora vocк й policial, seu dever й capiturar traficantes!");
        
SendClientMessageToAll(AMARELO,"%s usou o comando /policia e virou policial");
        return 
1;
    }
    if (
strcmp("/traficante"cmdtexttrue)==0)
    {
        
SetPlayerSkin(playerid103);
        
SetPlayerPos(playerid2495.2900,-1687.4009,13.5155);
        
SetPlayerHealth(playerid100);
        
SetPlayerArmour(playerid100);
        
ResetPlayerWeapons(playerid);
        
GivePlayerWeapon(playerid249999);
        
GivePlayerWeapon(playerid269999);
        
GivePlayerWeapon(playerid329999);
        
SendClientMessage(playeridAMARELO,"Agora vocк й Traficante, seu dever й matar ou fujir da policia!");
        
SendClientMessageToAll(AMARELO,"%s usou o comando /traficante e virou traficante tome cuidado");
        return 
1;
    }
    if (
strcmp("/normal"cmdtexttrue)==0)
    {
        
SetPlayerSkin(playerid271);
         
SetPlayerPos(playerid1242.7889, -1700.116814.8672);
        
SetPlayerHealth(playerid100);
        
ResetPlayerWeapons(playerid);
         
GivePlayerWeapon(playerid249999);
         
SendClientMessage(playeridAMARELO,"Vocк voltou ao normal, pois tome cuidado hб traficantes a solta!");
        
SendClientMessageToAll(AMARELO,"%s Usou o comando /normal e voltou ao normal.");
        return 
1;
    }
return 
0;

e este botei pra download pq й muito grande


Re: [URGENTE]Samp-server - Rafael_. - 21.09.2011

ajudem eu pf isso й um saco, toda hora fica fechando --'


Re: [URGENTE]Samp-server - [O.z]Caroline - 21.09.2011

pawn Код:
#include <a_samp>
#define AMARELO    0xF5DEB3AA
#pragma tabsize 0

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/policia", cmdtext, true)==0)
    {
        SetPlayerSkin(playerid, 283);
        SetPlayerPos(playerid,1552.5591,-1675.4406,16.1953);
        SetPlayerHealth(playerid, 100);
        SetPlayerArmour(playerid, 100);
        ResetPlayerWeapons(playerid);
        GivePlayerWeapon(playerid, 24, 9999);
        GivePlayerWeapon(playerid, 26, 9999);
        GivePlayerWeapon(playerid, 32, 9999);
        SendClientMessage(playerid, AMARELO,"Agora vocк й policial, seu dever й capiturar traficantes!");
        SendClientMessageToAll(AMARELO,"usou o comando /policia e virou policial");
        return 1;
    }
    if (strcmp("/traficante", cmdtext, true)==0)
    {
        SetPlayerSkin(playerid, 103);
        SetPlayerPos(playerid, 2495.2900,-1687.4009,13.5155);
        SetPlayerHealth(playerid, 100);
        SetPlayerArmour(playerid, 100);
        ResetPlayerWeapons(playerid);
        GivePlayerWeapon(playerid, 24, 9999);
        GivePlayerWeapon(playerid, 26, 9999);
        GivePlayerWeapon(playerid, 32, 9999);
        SendClientMessage(playerid, AMARELO,"Agora vocк й Traficante, seu dever й matar ou fujir da policia!");
        SendClientMessageToAll(AMARELO,"usou o comando /traficante e virou traficante tome cuidado");
        return 1;
    }
    if (strcmp("/normal", cmdtext, true)==0)
    {
        SetPlayerSkin(playerid, 271);
         SetPlayerPos(playerid, 1242.7889, -1700.1168, 14.8672);
        SetPlayerHealth(playerid, 100);
        ResetPlayerWeapons(playerid);
         GivePlayerWeapon(playerid, 24, 9999);
         SendClientMessage(playerid, AMARELO,"Vocк voltou ao normal, pois tome cuidado hб traficantes a solta!");
        SendClientMessageToAll(AMARELO,"Usou o comando /normal e voltou ao normal.");
        return 1;
    }
return 0;
}



Re: [URGENTE]Samp-server - Rafael_. - 21.09.2011

carol o que tinha de errado? ._.


Re: [URGENTE]Samp-server - Macintosh - 21.09.2011

Quote:
Originally Posted by Rafael_.
Посмотреть сообщение
carol o que tinha de errado? ._.
nгo formataste a mensagem.


Re: [URGENTE]Samp-server - Rafael_. - 21.09.2011

hein ? traduz ai


Re: [URGENTE]Samp-server - Macintosh - 21.09.2011

pawn Код:
SendClientMessageToAll(AMARELO,"%s usou o comando /policia e virou policial");
Correto seria

pawn Код:
new
   sStr[45 + MAX_PLAYER_NAME],
   Nome[MAX_PLAYER_NAME]
;
GetPlayerName(playerid, Nome, sizeof(Nome));
format(sStr, sizeof(sStr), "%s usou o comando /policia e virou policial", Nome); // Texto formatado '-'
SendClientMessageToAll(AMARELO, sStr);



Re: [URGENTE]Samp-server - Lуs - 21.09.2011

pawn Код:
#include <a_samp>
#define AMARELO    0xF5DEB3AA
#pragma tabsize 0

public OnPlayerCommandText(playerid, cmdtext[])
{
    new Name[ MAX_PLAYER_NAME ], string[ 100 ];
    GetPlayerName(playerid,Name,sizeof(Name));
    if (strcmp("/policia", cmdtext, true)==0)
    {
        SetPlayerSkin(playerid, 283);
        SetPlayerPos(playerid,1552.5591,-1675.4406,16.1953);
        SetPlayerHealth(playerid, 100);
        SetPlayerArmour(playerid, 100);
        ResetPlayerWeapons(playerid);
        GivePlayerWeapon(playerid, 24, 9999);
        GivePlayerWeapon(playerid, 26, 9999);
        GivePlayerWeapon(playerid, 32, 9999);
        SendClientMessage(playerid, AMARELO,"Agora vocк й policial, seu dever й capiturar traficantes!");
        format(string, sizeof(string), "%s usou o comando /policia e virou policial", Name);
        SendClientMessageToAll(-1, string);
        return 1;
    }
    if (strcmp("/traficante", cmdtext, true)==0)
    {
        SetPlayerSkin(playerid, 103);
        SetPlayerPos(playerid, 2495.2900,-1687.4009,13.5155);
        SetPlayerHealth(playerid, 100);
        SetPlayerArmour(playerid, 100);
        ResetPlayerWeapons(playerid);
        GivePlayerWeapon(playerid, 24, 9999);
        GivePlayerWeapon(playerid, 26, 9999);
        GivePlayerWeapon(playerid, 32, 9999);
        SendClientMessage(playerid, AMARELO,"Agora vocк й Traficante, seu dever й matar ou fujir da policia!");
        format(string, sizeof(string), "%s usou o comando /traficante e virou traficante, cuidado", Name);
        SendClientMessageToAll(-1, string);
        return 1;
    }
    if (strcmp("/normal", cmdtext, true)==0)
    {
        SetPlayerSkin(playerid, 271);
        SetPlayerPos(playerid, 1242.7889, -1700.1168, 14.8672);
        SetPlayerHealth(playerid, 100);
        ResetPlayerWeapons(playerid);
        GivePlayerWeapon(playerid, 24, 9999);
        SendClientMessage(playerid, AMARELO,"Vocк voltou ao normal, pois tome cuidado hб traficantes a solta!");
        format(string, sizeof(string), "%s usou o comando /normal e voltou ao normal.", Name);
        SendClientMessageToAll(-1, string);
        return 1;
    }
return 0;
}
Carol, preguiзosa.