• 21 Avril 2025, 16:04:39


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 - Bibiche

Pages: [1]
1
Autre / Re : [RECHERCHE] Un mappeur qualifié.
« le: 05 Août 2011, 21:28:29 »
Je t'ai ajouté.

2
Problèmes et bugs / Re : Le R du Raven's Rôleplay
« le: 19 Juin 2011, 01:24:03 »
c'est pas supprimer le copyright, je souhaite juste enlever le "R"' qui n'a pas d'objectif sur mon serveur :]
merci Dizzy ;)

3
Problèmes et bugs / Le R du Raven's Rôleplay
« le: 19 Juin 2011, 00:21:18 »
Bonsoir,

Je souhaite enlever le "R' en bas à droite en bleu avec le GM Raven's Roleplay mais je n'arrive pas à trouver l'image, donc j'aurais besoin d'un peu d'aide .. :)
Merci.

4
Problèmes et bugs / Re : Bug avec le Raven's RP
« le: 18 Juin 2011, 00:53:05 »
Après 1h passé dessus, j'ai réussi :D
Merci ;)
Résolu.

5
Problèmes et bugs / Re : Bug avec le Raven's RP
« le: 17 Juin 2011, 12:56:51 »
Bug toujours pas résolu .. quelqu'un pourrait vraiment m'aider ? :x

6
Problèmes et bugs / Re : Bug avec le Raven's RP
« le: 08 Juin 2011, 15:18:19 »
Ca ne marche pas, ou du moins je dois m'y prendre mal.

7
Problèmes et bugs / Re : Bug avec le Raven's RP
« le: 08 Juin 2011, 15:09:59 »
Titre édité.

Donc ..

strtok(const string[], &index)
{
    new length = strlen(string);
    while ((index < length) && (string[index] <= ' '))
    {
        index++;
    }

    new offset = index;
    new result[128];
    while ((index < length) && (string[index] > ' ') && ((index - offset) < (sizeof(result) - 1)))
    {
        result[index - offset] = string[index];
        index++;
    }
    result[index - offset] = EOS;
    return result;
}

Ca c'est la première erreur, je dois donc modifier 128 par 256 ?
Et pour le "already", j'ai cherché mais rien ne ressemble à ce bout, donc je vois pas pourquoi il est déjà défini.

8
Problèmes et bugs / Re : C'est dûr quoi .. HELP ME! :p
« le: 08 Juin 2011, 14:44:13 »
Et un moyen de savoir où il manque un } ?

9
Problèmes et bugs / Bug avec le Raven's RP
« le: 08 Juin 2011, 14:05:52 »
Hey bonjour à tous,

J'ai pris Raven's RP, je l'ai compilé, et voilà ce que ça me donne :

Citer
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(25115) : error 021: symbol already defined: "strtok"
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(25130) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(26641) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(26701) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(26754) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(27422) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(27481) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28162) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28190) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28201) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28261) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28530) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28557) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28587) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28595) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28629) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28637) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28670) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28715) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(2877 : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28836) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28844) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28879) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(28887) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(29114) : error 047: array sizes do not match, or destination array is too small
C:\Users\anne\Desktop\Raven's Roleplay 0.3c\gamemodes\larp.pwn(2916 : error 047: array sizes do not match, or destination array is too small

Merci à ceux qui m'aideront :')

Pages: [1]