[ERROR]ReturnUse ayuda por favor
#1

Hola xd . estoy aqui x un problema, me descargue el gm de LA - RP. solo para verlo. xD (para aprender)y cuando lo fui a buscar me salen los siguientes . errores

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11406) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11421) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13182) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13227) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13236) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13258) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13347) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13356) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13493) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13537) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13539) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13579) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(13581) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14179) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14328) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14372) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14420) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14496) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14572) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14648) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14687) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14915) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(14982) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15037) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15329) : error 017: undefined symbol "ReturnUser"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15342) : error 047: array sizes do not match, or destination array is too small

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


26 Errors.
es algo sobre el returnuser. hay que definirlo ? o que espero que me ayuden
Reply
#2

pawn Код:
ReturnUser(text[], playerid = INVALID_PLAYER_ID)
{
    new pos = 0;
    while (text[pos] < 0x21) // Strip out leading spaces
    {
        if (text[pos] == 0) return INVALID_PLAYER_ID; // No passed text
        pos++;
    }
    new userid = INVALID_PLAYER_ID;
    if (IsNumeric(text[pos])) // Check whole passed string
    {
        userid = strval(text[pos]);
        if (userid >=0 && userid < MAX_PLAYERS)
        {
            if(!IsPlayerConnected(userid))
            {
                userid = INVALID_PLAYER_ID;
            }
            else
            {
                return userid;
            }
        }
    }
    new len = strlen(text[pos]);
    new count = 0;
    new name[MAX_PLAYER_NAME];
    for (new i = 0; i < MAX_PLAYERS; i++)
    {
        if (IsPlayerConnected(i))
        {
            GetPlayerName(i, name, sizeof (name));
            if (strcmp(name, text[pos], true, len) == 0)
            { if (len == strlen(name)) { return i;
                } else  {
                    count++;
                    userid = i;
                } } } } if (count != 1)
    { if (playerid != INVALID_PLAYER_ID)
        { if (count)
            { SendClientMessage(playerid, 0xFF0000AA, "Multiple users found, please narrow earch");
            } else { SendClientMessage(playerid, 0xFF0000AA, "No matching user found");}
                } userid = INVALID_PLAYER_ID; } return userid;
}
Coloca esto abajo en tu GM
Reply
#3

ok gracias. pero me salieron otros

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11405) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11420) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15341) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15846) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16108) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16595) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19418) : warning 219: local variable "mod" shadows a variable at a preceding level
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(44701) : error 017: undefined symbol "IsNumeric"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(44737) : warning 203: symbol is never used: "ret_memcpy"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


7 Errors.
No sera ninguna molestia? e.e (pase usted jojo)
Reply
#4

Quote:
Originally Posted by GranaT3
Посмотреть сообщение
ok gracias. pero me salieron otros

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11405) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11420) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15341) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15846) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16108) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16595) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19418) : warning 219: local variable "mod" shadows a variable at a preceding level
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(44701) : error 017: undefined symbol "IsNumeric"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(44737) : warning 203: symbol is never used: "ret_memcpy"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


7 Errors.
No sera ninguna molestia? e.e (pase usted jojo)
Despuйs de usted.
Arre
pawn Код:
#pragma unused ret_memcpy // esto arriba de tu gm abajo de los includes
IsNumeric(const string[]) // esto abajo en tu gm
{
    for (new i = 0, j = strlen(string); i < j; i++)
    {
        if (string[i] > '9' || string[i] < '0') return 0;
    }
    return 1;
}
Y lo otro ya adivino no soy pasame las lineas.
Reply
#5

xD solo se soluciono uno xD

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11408) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11423) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15344) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15849) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16111) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16598) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19421) : warning 219: local variable "mod" shadows a variable at a preceding level
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


6 Errors.
WARNING :

Код:
if (strcmp(cmd, "/buygun", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if(GetPlayerMoney(playerid) < 1)
			{
			    SendClientMessage(playerid, COLOR_GREY, "   You dont have enough money with you !");
			    return 1;
			}
			new gun;
			new gunid[16];
			new gunstring1[256];
			new gunstring2[256];
			new gunstring3[256];
			new gunstring4[256];
			new gunstring5[256];
			new infostring[256];
			new guncharge;
			new ammocharge;
			new location = PlayerInfo[playerid][pLocal];
			if(location == 99 || location == 100 || location == 102)
			{
			    if(BizzInfo[location-99][bProducts] <= 0)
			    {
			        GameTextForPlayer(playerid, "~r~Out Of Stock", 5000, 1);
					return 1;
			    }
				new mod = 100;
				tmp = strtok(cmdtext, idx);
				if(!strlen(tmp))
				{
					format(string, sizeof(string), "USAGE: /buygun [gunname] [ammoamount]");
					SendClientMessage(playerid, COLOR_GREEN,"_______________________________________");
					SendClientMessage(playerid, COLOR_WHITE,"*** Guns & Ammo ***");
					SendClientMessage(playerid, COLOR_GRAD2,string);
					format(gunstring1, 256, "Weapons: parachute ($%d) golfclub ($%d) nightstick ($%d) baseballbat ($%d) shovel ($%d) poolcue ($%d)",
					GunPrice[0][0]/100*mod,GunPrice[1][0]/100*mod,GunPrice[2][0]/100*mod,GunPrice[3][0]/100*mod,GunPrice[4][0]/100*mod,GunPrice[5][0]/100*mod,GunPrice[6][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring1);
					format(gunstring2, 256, "Weapons: purpledildo ($%d) whitedildo ($%d) longwhitedildo ($%d) whitedildo2 ($%d) flowers ($%d) cane",
					GunPrice[7][0]/100*mod,GunPrice[8][0]/100*mod,GunPrice[9][0]/100*mod,GunPrice[10][0]/100*mod,GunPrice[11][0]/100*mod,GunPrice[12][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring2);
					format(gunstring3, 256, "Weapons: sdpistol ($%d) deagle ($%d) mp5 ($%d)",
					GunPrice[13][0]/100*mod,GunPrice[14][0]/100*mod,GunPrice[15][0]/100*mod,GunPrice[16][0]/100*mod,GunPrice[17][0]/100*mod,GunPrice[18][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring3);
					format(gunstring4, 256, "Weapons: shotgun ($%d) ak47 ($%d) m4 ($%d) rifle ($%d)",
					GunPrice[19][0]/100*mod,GunPrice[20][0]/100*mod,GunPrice[21][0]/100*mod,GunPrice[22][0]/100*mod,GunPrice[23][0]/100*mod,GunPrice[24][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring4);
					format(gunstring5, 256, "Weapons: pistolammo ($%d) shotgunammo ($%d) smgammo ($%d) assaultammo ($%d) rifleammo ($%d)",
					GunPrice[25][0],GunPrice[26][0],GunPrice[27][0],GunPrice[28][0],GunPrice[29][0]);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring5);
					SendClientMessage(playerid, COLOR_GREEN,"_______________________________________");
					return 1;
				}
Tesoro!! donde estбs
Reply
#6

Quote:
Originally Posted by GranaT3
Посмотреть сообщение
xD solo se soluciono uno xD

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11408) : error 021: symbol already defined: "strtok"
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(11423) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15344) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15849) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16111) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16598) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19421) : warning 219: local variable "mod" shadows a variable at a preceding level
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


6 Errors.
WARNING :

Код:
if (strcmp(cmd, "/buygun", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
	        if(GetPlayerMoney(playerid) < 1)
			{
			    SendClientMessage(playerid, COLOR_GREY, "   You dont have enough money with you !");
			    return 1;
			}
			new gun;
			new gunid[16];
			new gunstring1[256];
			new gunstring2[256];
			new gunstring3[256];
			new gunstring4[256];
			new gunstring5[256];
			new infostring[256];
			new guncharge;
			new ammocharge;
			new location = PlayerInfo[playerid][pLocal];
			if(location == 99 || location == 100 || location == 102)
			{
			    if(BizzInfo[location-99][bProducts] <= 0)
			    {
			        GameTextForPlayer(playerid, "~r~Out Of Stock", 5000, 1);
					return 1;
			    }
				new mod = 100;
				tmp = strtok(cmdtext, idx);
				if(!strlen(tmp))
				{
					format(string, sizeof(string), "USAGE: /buygun [gunname] [ammoamount]");
					SendClientMessage(playerid, COLOR_GREEN,"_______________________________________");
					SendClientMessage(playerid, COLOR_WHITE,"*** Guns & Ammo ***");
					SendClientMessage(playerid, COLOR_GRAD2,string);
					format(gunstring1, 256, "Weapons: parachute ($%d) golfclub ($%d) nightstick ($%d) baseballbat ($%d) shovel ($%d) poolcue ($%d)",
					GunPrice[0][0]/100*mod,GunPrice[1][0]/100*mod,GunPrice[2][0]/100*mod,GunPrice[3][0]/100*mod,GunPrice[4][0]/100*mod,GunPrice[5][0]/100*mod,GunPrice[6][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring1);
					format(gunstring2, 256, "Weapons: purpledildo ($%d) whitedildo ($%d) longwhitedildo ($%d) whitedildo2 ($%d) flowers ($%d) cane",
					GunPrice[7][0]/100*mod,GunPrice[8][0]/100*mod,GunPrice[9][0]/100*mod,GunPrice[10][0]/100*mod,GunPrice[11][0]/100*mod,GunPrice[12][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring2);
					format(gunstring3, 256, "Weapons: sdpistol ($%d) deagle ($%d) mp5 ($%d)",
					GunPrice[13][0]/100*mod,GunPrice[14][0]/100*mod,GunPrice[15][0]/100*mod,GunPrice[16][0]/100*mod,GunPrice[17][0]/100*mod,GunPrice[18][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring3);
					format(gunstring4, 256, "Weapons: shotgun ($%d) ak47 ($%d) m4 ($%d) rifle ($%d)",
					GunPrice[19][0]/100*mod,GunPrice[20][0]/100*mod,GunPrice[21][0]/100*mod,GunPrice[22][0]/100*mod,GunPrice[23][0]/100*mod,GunPrice[24][0]/100*mod);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring4);
					format(gunstring5, 256, "Weapons: pistolammo ($%d) shotgunammo ($%d) smgammo ($%d) assaultammo ($%d) rifleammo ($%d)",
					GunPrice[25][0],GunPrice[26][0],GunPrice[27][0],GunPrice[28][0],GunPrice[29][0]);
					SendClientMessage(playerid, COLOR_GRAD3, gunstring5);
					SendClientMessage(playerid, COLOR_GREEN,"_______________________________________");
					return 1;
				}
Tesoro!! donde estбs
Busca strtok y borra toda la funciуn
busca donde estб definido mod y borralo.
Reply
#7

xD lo del mod : estб en el comando /buygun. hay te lo pase -_-
y es un comando importante. y si le embarro quitando eso xP

Код:
GunPrice[19][0]/100*mod,GunPrice[20][0]/100*mod,GunPrice[21][0]/100*mod,GunPrice[22][0]/100*mod,GunPrice[23][0]/100*mod,GunPrice[24][0]/100*mod);

arriba el /buygun completo. xd y borre lo otro igual siguen saliendo otros

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15326) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15831) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16093) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16580) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19403) : warning 219: local variable "mod" shadows a variable at a preceding level
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
todavia no borro el mod. xD me da miedo que la embarre mбs
Reply
#8

Quote:
Originally Posted by GranaT3
Посмотреть сообщение
xD lo del mod : estб en el comando /buygun. hay te lo pase -_-
y es un comando importante. y si le embarro quitando eso xP

Код:
GunPrice[19][0]/100*mod,GunPrice[20][0]/100*mod,GunPrice[21][0]/100*mod,GunPrice[22][0]/100*mod,GunPrice[23][0]/100*mod,GunPrice[24][0]/100*mod);

arriba el /buygun completo. xd y borre lo otro igual siguen saliendo otros

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15326) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15831) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16093) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16580) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19403) : warning 219: local variable "mod" shadows a variable at a preceding level
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
todavia no borro el mod. xD me da miedo que la embarre mбs
Te dije en donde DEFINES mod lo tienes definido 2 veces borra la individual y deja la global.
Reply
#9

._. vez!

y sigue igual

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15326) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15831) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16093) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16580) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19403) : warning 219: local variable "mod" shadows a variable at a preceding level
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19420 -- 19421) : error 001: expected token: ",", but found ";"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.
Xd lo que quiero solucionar son estos

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15326) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15831) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16093) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16580) : error 047: array sizes do not match, or destination array is too small
Reply
#10

Quote:
Originally Posted by GranaT3
Посмотреть сообщение
._. vez!

y sigue igual

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15326) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15831) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16093) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16580) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19403) : warning 219: local variable "mod" shadows a variable at a preceding level
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(19420 -- 19421) : error 001: expected token: ",", but found ";"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


5 Errors.
Xd lo que quiero solucionar son estos

Код:
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15326) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(15831) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16093) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\hakers.inc\Escritorio\San andreas\Los Angeles BY REGM Traducido\gamemodes\larp.pwn(16580) : error 047: array sizes do not match, or destination array is too small
Ok, pasame las lineas no todo el comando porque aъn asн no adivino la linea ¬¬
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)