14.10.2011, 15:54
hola saben como veran estoy tratando de crear un loko sistema de vip peroooo
me da estos errores....
Y EL COMANDO NO FUKA si me pudieran ayudar de antemano se los agradeceria....
pawn Код:
//los includes porsupuesto
#include <a_samp>
#include <core>
#include <float>
#include <streamer>
#include <dini>
#include <lethaldudb2>
pawn Код:
if (strcmp("/setvip", cmdtext, true) == 0)
{
if (IsPlayerAdmin(playerid))
{
new tmp1[128], tmp2[128],jugador, usador, string1[256], string2[256], nombreusador[MAX_PLAYER_NAME], nombrejugador[MAX_PLAYER_NAME], archivo[256];
estas son las lineas==> tmp1 = strtok(cmdtext, idx);
estas son las lineas==> tmp2 = strtok(cmdtext, idx);
if (!strlen(tmp1) || !strlen(tmp2)) return SendClientMessage(playerid, COLOR_ROJO, "[Error] Usa: /setvip [ID] [DEL 0 AL 4]."); <====//otros de los problemas son que cuando coloco el cmd dice eso luego lo coloco bien y dice que el cmd no existe osea que no esta funcionando nada de nada me pueden ayudar....
jugador = strval(tmp1);
usador = playerid;
if (IsPlayerConnected(jugador))
{
if (strval(tmp2) < 0 || strval(tmp2) > 4) return SendClientMessage(playerid, COLOR_ROJO, "[Error]: El nivel V.I.P es solo entre 0 y 4.");
if(strval(tmp2) == Informacion[jugador][Premium]) return SendClientMessage(playerid, COLOR_ROJO, "[Error]: El jugador ya tiene ese nivel V.I.P.");
GetPlayerName(jugador, nombrejugador, MAX_PLAYER_NAME);
GetPlayerName(usador, nombreusador, MAX_PLAYER_NAME);
format(string1, 256, "[Admin] %s Te Ha otorgado una cuenta V.I.P de nivel : %d.", nombreusador,strval(tmp2));
format(string2, 256, "[Admin] Has otorgado una cuenta V.I.P de nivel : %d a %s.", strval(tmp2), nombrejugador);
SendClientMessage(jugador, COLOR_VERDE_CLARO, string1);
SendClientMessage(usador, COLOR_VERDE_CLARO, string2);
PlayerPlaySound(jugador, 1057, 0.0, 0.0, 0.0);
Informacion[jugador][Premium] = strval(tmp2);
format(archivo, 256, "V.I.P/Usuarios/%s.ini", nombrejugador);
dini_IntSet(archivo, "V.I.P", strval(tmp2));
}
else return SendClientMessage(playerid, COLOR_ROJO, "[Error]: Jugador no Contectado");
}
else return SendClientMessage(playerid, COLOR_ROJO, "[Error]: Comando Solo Para Admin Rcon!");
return 1;
}
pawn Код:
C:\Documents and Settings\cesar\Escritorio\PRUEVA\gamemodes\lvdm.pwn(386) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\cesar\Escritorio\PRUEVA\gamemodes\lvdm.pwn(387) : error 047: array sizes do not match, or destination array is too small
C:\Documents and Settings\cesar\Escritorio\PRUEVA\gamemodes\lvdm.pwn(3568) : warning 203: symbol is never used: "ret_memcpy"
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
2 Errors.
Y EL COMANDO NO FUKA si me pudieran ayudar de antemano se los agradeceria....