[Problema] Warnings
#1

Hola tengo un problema con mi gm me tira estos warning, me tiraba mas pero ya los solucione aora me quedan esto me podria ayudar ?
Aca les dejo los warnings y abajo el codigo del error


Код:
C:\Documents and Settings\mipc\Escritorio\sr-rp.pwn(4455) : warning 219: local variable "string" shadows a variable at a preceding level
		    new string[64];
C:\Documents and Settings\mipc\Escritorio\sr-rp.pwn(33890) : warning 202: number of arguments does not match definition
						SendClientMessageToAll(COLOR_NEWS,string,1);
C:\Documents and Settings\mipc\Escritorio\sr-rp.pwn(33926) : warning 202: number of arguments does not match definition
							SendClientMessageToAll(COLOR_NEWS,string,1);
C:\Documents and Settings\mipc\Escritorio\sr-rp.pwn(33933) : warning 202: number of arguments does not match definition
							SendClientMessageToAll(COLOR_NEWS,string,1);
C:\Documents and Settings\mipc\Escritorio\sr-rp.pwn(39159) : warning 204: symbol is assigned a value that is never used: "text3"
	        new text3[20];
C:\Documents and Settings\mipc\Escritorio\sr-rp.pwn(49580) : warning 204: symbol is assigned a value that is never used: "vehicleid"
	new vehicleid = GetPlayerVehicleID(playerid);
Muchas gracias a todos los que me ayudaran
Reply
#2

Код:
warning 219: local variable "string" shadows a variable at a preceding level
La variable "string" ya estб definida fuera de esa parte, bуrrala o cбmbiale el nombre.


Код:
warning 202: number of arguments does not match definition
pawn Код:
SendClientMessageToAll(COLOR_NEWS,string,1); // Borra esta lнnea
SendClientMessageToAll(COLOR_NEWS, string); // Cбmbiala por esta

warning 204: symbol is assigned a value that is never used: "text3"
pawn Код:
new text3[20]; // Estб definidia, pero nunca se usу, bуrrala

warning 204: symbol is assigned a value that is never used: "vehicleid"
pawn Код:
new vehicleid = GetPlayerVehicleID(playerid); // Estб definida, pero nunca se usу, bуrrala
Reply
#3

proble haci pero me tira error y se caga el gm
Reply
#4

No, los warnings son como advertencias

Ej: has puesto

pawn Код:
new soy el mejor;
Y no lo has usado para nada, no es problematico pero es una linea inutil, asi tambien hay otras qeu te indican que el orden esta mal, que hay cossas que no son del todo correcta, simplemente tambien si una linea esta bien colocada (en que columna) etcetc
Reply
#5

Quote:
Originally Posted by Nicolas_Soria
Посмотреть сообщение
proble haci pero me tira error y se caga el gm
Si es que te da error, puede ser porque alguna de las lнneas que tenнan warnings afectaban a otras lнneas, deberнas pasar mбs cуdigo para poder corregirlas bien.
Reply
#6


Solucione algunos quedan estos :S

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

C:\Documents and Settings\xds\Escritorio\server\gamemodes\sr-rp.pwn(39353) : warning 204: symbol is assigned a value that is never used: "text3"
C:\Documents and Settings\xds\Escritorio\server\gamemodes\sr-rp.pwn(49774) : warning 204: symbol is assigned a value that is never used: "vehicleid"

*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

Linea del 1 warning

pawn Код:
new text3[20];
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*

linea del 2 warning

pawn Код:
new vehicleid = GetPlayerVehicleID(playerid);
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
Reply
#7

borra ambas lineas, dado que nunca usas esa array ni esa variable.

Nota: el codigo pawn ponelo entre [pawn*] y [/pawn*] (sin los *)
Reply
#8

Si las borro o le pongo // me salga error :S
Reply
#9

їQuй errores te salen cuando las borras?
Reply
#10

Ese :S



pawn Код:
C:\Documents and Settings\xds\Escritorio\server\gamemodes\sr-rp.pwn(7452) : error 017: undefined symbol "vehicleid"
C:\Documents and Settings\xds\Escritorio\server\gamemodes\sr-rp.pwn(49774) : warning 204: symbol is assigned a value that is never used: "vehicleid"
Pawn compiler 3.2.3664          Copyright (c) 1997-2006, ITB CompuPhase


1 Error.
Estas son las lineas del error

7452

pawn Код:
if(IsPlayerInVehicle(i, vehicleid) && GetPlayerState(i) == 2 && TransportDuty[i] > 0)
49774

pawn Код:
new vehicleid = GetPlayerVehicleID(playerid);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)