• 20 Avril 2024, 04:45:55


Voir les contributions

Cette section vous permet de consulter les contributions (messages, sujets et fichiers joints) d'un utilisateur. Vous ne pourrez voir que les contributions des zones auxquelles vous avez accès.


Messages - vitry_selkato

Pages: [1] 2 3 ... 12
1
il y a un tat de fs, même cristab avait fait un system complet, fait une petite recherche tu trouveras

2
Perso, je te conseil de partir sur un pawno vièrge certe cela prend du temp, mais au moin tu sait ce que tu fait et ce que tu ajoute la dedans, et quand il y a un problème tu sait où il se trouve.

3
Bonjour, tu peut utiliser la fonction suivante : OnPlayerKeyStateChange
https://wiki.sa-mp.com/wiki/OnPlayerKeyStateChange_FR

4
Bonjour,
Alors voila, j'ai installer le patch 1.7.0.0, j'ai installer IV:MP vesion lastest
J'ai donc lancer IV MP, j'ai choisi un serveur,
ça c'est connecter niquel comme Sa:mp, j'ai commencer a jouer et tout,
après j'ai couper, ensuite la j'ai voulu rejouer,
Lorsque je voit la liste de serveur, je choisi un serveur, et je clique connect, et voila que IV:MP ce ferme.

Ce que j'ai fait:
executer en tant qu'administrateur, [Test: pareil]:wall
desinstaller IV MP et re-installer, [Test: pareil]:wall
desinstaller le patch et re-installer, [Test: pareil]:wall
desinstaller IV:MP et le patch, [Test: pareil]:wall
Ajouter une régles, avec toute connexion autoriser dans le par-feux, [Test: pareil]:wall

Je ne comprend pas pourquoi ... :bangin

5
Autre / Re : Re : Quel language me conseiller vous
« le: 04 Août 2011, 16:32:46 »
Non mais à mon avis, il parle de site Web je crois ;)

Non , j'ai fait du Vbscript sur windows et pas en html, R@f Ton méssage ma permis d'avancer sur mon projet merci.

6
Autre / Re : Quel language me conseiller vous
« le: 04 Août 2011, 01:38:20 »
j'ai expliquer clairement ce que je voulez faire

7
Autre / [Résolu]Quel language me conseiller vous
« le: 04 Août 2011, 01:01:22 »
Je suis nouveau en Codage , j'ai quelque notion en Html , je vien de faire une sorte de tuto en Vbscript , c'est pas fameux des fenétre qui s'ouvre qu'avec deux bouton je voulez amélioré ce tuto , je voudrez y ajouter des images avec bouton suivant précédent recommencer quel language me conseiller vous ?

8
La parcontre j'ai 7 érreur
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(487) : error 025: function heading differs from prototype
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(541) : error 021: symbol already defined: "checkpointUpdate"
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(582) : error 035: argument type mismatch (argument 2)
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(623) : error 017: undefined symbol "label"
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(623) : warning 215: expression has no effect
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(623) : error 001: expected token: ";", but found "]"
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(623) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(623) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase


7 Errors.

:wall

9
Je ne voit pas comment réglés le probléme,

Ensuite :

new checkpointType[ MAX_POINTS ] = {
CP_AMMU,
CP_AMMU_2,
CP_AMMU_3,
CP_AMMU_4,
CP_AMMU_5,
CP_LSAP,
CP_LVAP,
CP_SFAP,
CP_LSTS,
CP_LVTS,
CP_SFTS
};
forward getCheckpointType( playerID );
public getCheckpointType( playerID ) {
return checkpointType[ playerCheckpoint][playerid];
}

10
forward getCheckpointType( playerID );

new playerCheckpoint[ SLOTS ];
public checkpointUpdate( )
{
for(new i=0; i<SLOTS; i++)
{
    if(IsPlayerConnected(i)) {
        for(new j=0; j < MAX_POINTS; j++) {
            if(isPlayerInArea(i, checkCoords[j])) {
                if(playerCheckpoint[i]!=j) {
                    DisablePlayerCheckpoint(i);
SetPlayerCheckpoint(i, checkpoints[j][0],checkpoints[j][1],checkpoints[j][2],checkpoints[j][3]);
playerCheckpoint[i] = j;
}
            } else {
            if(playerCheckpoint[i]==j) {
                DisablePlayerCheckpoint(i);
                playerCheckpoint[i] = 999;
              }
            }
        }
}
}
}

public checkpointUpdate( )
{
for(new i=0; i<SLOTS; i++)
{
    if(IsPlayerConnected(i)) {
        for(new j=0; j < MAX_POINTS; j++) {
            if(isPlayerInArea(i, checkCoords[j])) {
                if(playerCheckpoint[i]!=j) {
                    DisablePlayerCheckpoint(i);
SetPlayerCheckpoint(i, checkpoints[j][0],checkpoints[j][1],checkpoints[j][2],checkpoints[j][3]);
playerCheckpoint[i] = j;
}
            } else {
            if(playerCheckpoint[i]==j) {
                DisablePlayerCheckpoint(i);
                playerCheckpoint[i] = 999;
              }
            }
        }
}
}
}
rien d'autre

11
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(489) : error 033: array must be indexed (variable "playerCheckpoint")
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(489) : error 029: invalid expression, assumed zero
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(489) : error 017: undefined symbol "playerid"
C:\Documents and Settings\Sèlim\Bureau\SERVEUR SA-MP\gamemodes\OaklandGangWars.pwn(489) : fatal error 107: too many error messages on one line
public getCheckpointType( playerID ) {
return checkpointType[ playerCheckpoint][playerid];
}

 >:(

12
Oui, mais reste le départ de mon poste , Comment afficher les méssages du serveur sur mon site web , le Gamemode fonctionne très bien merci mais j'ai toujours pas les méssages en direct de mon site :s

13
Arf, Où puis-je trouver plus d'information ? pour résoudre mon probléme ?

14
Biensur  8)

Bon s'était un probléme de base Mysql qui n'été pas distant maintenan mon problèmes est que les méssages envoyé au serveur ne sont pas envoyé sur le site Ai-je un probléme au niveau de la page php ?

15
Nouvelle aperçus:


 :wall :wall :bangin :wall :wall
                       >:(

Pages: [1] 2 3 ... 12