01.02.2015, 22:16
(
Последний раз редактировалось xTexTx; 02.02.2015 в 01:48.
)
Buenas, hice un sistema de Puertas IG pero la verdad es que me da warning en los Float, miren.
їPodrнan ayudarme? Desde ya les agradezco muchito.
pawn Код:
forward CargarInfoPuerta_data(i,name[],value[]);
public CargarInfoPuerta_data(i,name[],value[])
{
INI_String("Nombre",InformacionP[i][P_NOMBRE],32);
INI_Int("ID",InformacionP[i][P_ID]);
INI_Float("Ext X",InformacionP[i][P_EXT][0]); // Aquн
INI_Float("Ext Y",InformacionP[i][P_EXT][1]); // Aquн
INI_Float("Ext Z",InformacionP[i][P_EXT][2]); // Aquн
INI_Float("Int X",InformacionP[i][P_INT][0]); // Aquн
INI_Float("Int Y",InformacionP[i][P_INT][1]); // Aquн
INI_Float("Int Z",InformacionP[i][P_INT][2]); // Aquн xDDD
INI_Int("Interior ID",InformacionP[i][P_INTID]);
INI_Int("VirtualWorld",InformacionP[i][P_VW]);
return 1;
}
CMD:crearpuerta(playerid, params[])
{
new i = SlotPuertaLibre();
new asd[128], Float:x, Float:y, Float:z;
if(Informacion[playerid][pAdmin] < 4) return SendClientMessage(playerid, -1, "No tienes permiso para utilizar este comando");
if(sscanf(params,"s[32]ii",params[0])) return SendClientMessage(playerid, -1, "/CrearPuerta (Nombre)");
GetPlayerPos(playerid, x, y, z);
InformacionP[i][P_NOMBRE] = params[0];
InformacionP[i][P_ID] = i;
InformacionP[i][P_EXT][0] = x; // Acб tambiйn
InformacionP[i][P_EXT][1] = y; // Acб tambiйn
InformacionP[i][P_EXT][2] = z; // Acб tambiйn :'C
InformacionP[i][P_INTID] = 0;
InformacionP[i][P_VW] = 0;
PickupP[i] = CreateDynamicObject(19132, InformacionP[i][P_EXT][0],InformacionP[i][P_EXT][1],InformacionP[i][P_EXT][2], 0.0, 0.0, 0.0);
format(asd, sizeof(asd), "{00BFA9}%s\n{FFFFFF}ID: {00BFA9}%i\n\n{FFFFFF}Preciona '{FFFF00}H{FFFFFF}' para ingresar",InformacionP[i][P_NOMBRE],InformacionP[i][P_ID]);
LabelP[i] = Create3DTextLabel(asd,0xFFFFFFFF,InformacionP[i][P_EXT][0],InformacionP[i][P_EXT][1],InformacionP[i][P_EXT][2],20,0);
Iter_Add(Puertas,i);
GuardarPuerta(i);
return 1;
}
Код:
C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(221) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(222) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(223) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1430) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1431) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1432) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1433) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1434) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1435) : warning 213: tag mismatch C:\Users\Equipo\Desktop\Servidor samp\gamemodes\ServerGM.pwn(1513) : warning 203: symbol is never used: "TotalVehicles" Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase 10 Warnings.