[Ayuda] Errores .
#1

Hola Que tal ...

Bueno busco ayuda con los siguientes errores que me dio hoy mi game mode ...




Код:
:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2714) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2743) : error 004: function "SafeGivePlayerMoney" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2779) : error 004: function "SafeResetPlayerWeapons" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2780) : error 004: function "SafeGivePlayerWeapon" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2807) : error 004: function "SafeResetPlayerWeapons" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2820) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2832) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2854) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2866) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2885) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2900) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2913) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2927) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2941) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(2955) : error 004: function "ClearChatbox" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3428) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3432) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3445) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3449) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3462) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3492) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3496) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3507) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3511) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3523) : error 004: function "PlayerToPoint" is not implemented
C:\Documents and Settings\Administrador\Escritorio\Venezuela RPG\gamemodes\Vzla-RP.pwn(3527) : error 004: function "PlayerToPoint" is not implemented

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


26 Errors.
Bueno esos son ... Espero me puedan ayudar =P Gracias y Saludos ...
Reply
#2

Ahh esos errores me daban a mi cuando hize un tutorial en un RP, me dio mal pero dsps lo logre corregir.
PD: Chequea todas las lineas q acababas de modificar aver q onda..
Salu2
Reply
#3

Eso representa que te olvidaste de cerrar algo, buscalo. Con cerrar me refiero a que te olvidaste de cerrar algo con el "}"
Reply
#4

Seguro que te falto cerrar algo. A mi me pasaba eso cuando no cerraba algo (Creo, ya que ni me acuerdo xD)
Reply
#5

Aff Que lala .. =S no ni que sea porque lo comparo con los otros y nada todo esta igual U.u Uso Vida latina .. porsi a alguien mas le a pasado esto en es gm =P porfa respando U.u

Gracias a todos igual =P
Reply
#6

Here,Unsolved Very Errors

In FInal
pawn Код:
forward ClearChatBox(playerid);
public ClearChatBox(playerid)
{
new i=30; while(i>0)
{
SendClientMessage(playerid,0xCCCCCCCC," ");
i--;
}
}
forward  PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z);
public PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z) { new Float:oldposx, Float:oldposy, Float:oldposz; new Float:tempposx, Float:tempposy, Float:tempposz; GetPlayerPos(playerid, oldposx, oldposy, oldposz); tempposx = (oldposx -x); tempposy = (oldposy -y); tempposz = (oldposz -z); if (((tempposx <> -radi)) && ((tempposy <> -radi)) && ((tempposz <> -radi))) { return 1; } return 0; }
Reply
#7

Sorry men no me sirvio =S no hablo inglish de paso xD
Gracias igual [well thanks]
Reply
#8

Te faltan "}"
Verifica lo ultimo que has hecho
Reply
#9

Sorry-me, i made code in hurry
Lo sentimo, fiz los cуdigos de presas
Reply
#10

Hola Gracias por tu alluda pero reviso y reviso para ver si me faltan } y nada =S

No encuentro nada que le falte =S ...

Igual gracias U.u
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)