[Problema] Warnings -
Nicolas_Soria - 26.10.2010
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
Respuesta: [Problema] Warnings -
MrDeath537 - 26.10.2010
Код:
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
Re: [Problema] Warnings -
Nicolas_Soria - 26.10.2010
proble haci pero me tira error y se caga el gm
Re: [Problema] Warnings -
SuperMarioRol - 26.10.2010
No, los warnings son como advertencias
Ej: has puesto
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
Respuesta: Re: [Problema] Warnings -
MrDeath537 - 26.10.2010
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.
Re: [Problema] Warnings -
Nicolas_Soria - 27.10.2010
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
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
linea del 2 warning
pawn Код:
new vehicleid = GetPlayerVehicleID(playerid);
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
Respuesta: [Problema] Warnings -
TheChaoz - 27.10.2010
borra ambas lineas, dado que nunca usas esa array ni esa variable.
Nota: el codigo pawn ponelo entre [pawn*] y [/pawn*] (sin los *)
Re: [Problema] Warnings -
Nicolas_Soria - 27.10.2010
Si las borro o le pongo // me salga error :S
Re: [Problema] Warnings -
Miguel - 27.10.2010
їQuй errores te salen cuando las borras?
Re: [Problema] Warnings -
Nicolas_Soria - 27.10.2010
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);