Problиme ProxDetector
#1

Re-bonjour chиre communautй de SA:MP !

Aprиs tout ce qui est sйcuritй d'utilisateur, je passe dйsormais aux commandes in game, pour mon script rфleplay de A а Z.

J'ai tout de mкme un problиme avec ce fameux ProxDetector, qui je pense, n'est plus d'actualitй !
Je parle bien йvidemment du ProxDetector anglais partagй en 2012 а mes souvenirs, ce qui est fort loin pour notre version de SA:MP.

J'ai rйglй le ProxDetector ainsi que ma commande /action alias /me pour qu'ils s'adaptent а mon script:

Le ProxDetector:

PHP Code:
forward ProxDetector(Float:radiplayeridstring[],col1,col2,col3,col4,col5);
public 
ProxDetector(Float:radiplayeridstring[],col1,col2,col3,col4,col5)
{
    if(
JoueurInfo[playerid][jCompte] == 1)
    {
        new 
Float:posxFloat:posyFloat:posz;
        new 
Float:oldposxFloat:oldposyFloat:oldposz;
        new 
Float:tempposxFloat:tempposyFloat:tempposz;
        
GetPlayerPos(playeridoldposxoldposyoldposz);
          for(new 
0MAX_PLAYERSi++)
        {
            if(
JoueurInfo[playerid][jCompte] == && GetPlayerVirtualWorld(playerid)==GetPlayerVirtualWorld(i))
            {
                
GetPlayerPos(iposxposyposz);
                
tempposx = (oldposx -posx);
                
tempposy = (oldposy -posy);
                
tempposz = (oldposz -posz);
                if (((
tempposx radi/16) && (tempposx > -radi/16)) && ((tempposy radi/16) && (tempposy > -radi/16)) && ((tempposz radi/16) && (tempposz > -radi/16)))
                    {
SendClientMessage(icol1string);}
                else if (((
tempposx radi/8) && (tempposx > -radi/8)) && ((tempposy radi/8) && (tempposy > -radi/8)) && ((tempposz radi/8) && (tempposz > -radi/8)))
                    {
SendClientMessage(icol2string);}
                else if (((
tempposx radi/4) && (tempposx > -radi/4)) && ((tempposy radi/4) && (tempposy > -radi/4)) && ((tempposz radi/4) && (tempposz > -radi/4)))
                    {
SendClientMessage(icol3string);}
                else if (((
tempposx radi/2) && (tempposx > -radi/2)) && ((tempposy radi/2) && (tempposy > -radi/2)) && ((tempposz radi/2) && (tempposz > -radi/2)))
                    {
SendClientMessage(icol4string);}
                else if (((
tempposx radi) && (tempposx > -radi)) && ((tempposy radi) && (tempposy > -radi)) && ((tempposz radi) && (tempposz > -radi)))
                    {
SendClientMessage(icol5string);}
            }
        }
    }
//not connected
    
return 1;

La commande:

PHP Code:
    new string[150];
    new 
message[250+MAX_PLAYER_NAME+1];
    new 
utilisateur[MAX_PLAYER_NAME+1];
    new 
cmd[30];
    new 
idx;
    if(
strcmp(cmd"/action"true) ==0)
    {
        if(
JoueurInfo[playerid][jCompte] == 1)
        {
            
GetPlayerName(playeridutilisateursizeof(utilisateur));
            new 
length strlen(cmdtext);
            while ((
idx length) && (cmdtext[idx] <= ' '))
            {
                
idx++;
            }
            new 
offset idx;
            new 
result[64];
            while ((
idx length) && ((idx offset) < (sizeof(result) - 1)))
            {
                
result[idx offset] = cmdtext[idx];
                
idx++;
            }
            
result[idx offset] = EOS;
            if(!
strlen(result))
            {
                
SendClientMessage(playeridCOULEUR_GUIDE"[Guide] {FFFFFF}/action [message]");
                return 
1;
            }
            
format(stringsizeof(string), "%s %s"utilisateurmessage);
            
ProxDetector(30.0playeridstringCOULEUR_ROSECOULEUR_ROSECOULEUR_ROSECOULEUR_ROSECOULEUR_ROSE);
            
printf("%s"string);
        }
        else
        {
            
SendClientMessage(playeridCOULEUR_ERREUR"[Erreur] {FFFFFF}Vous devez кtre inscrit sur le serveur pour pouvoir effectuer cette commande !");
        }
        return 
1;
    } 
Je prйcise йgalement que la commande n'est pas de moi mais du gamemode U2C-RP.
En ce qui concerne le systиme de visage cachй si le joueur possиde un casque, une cagoule, voir des lunettes de soleil, seront bientфt rйalisйs dans cette commande.

Le problиme est: Aucun message ne s'affiche in game !

Cordialement.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)