Jump to content
  • 0

Errori sistem tuning


GiGiMuScHi

Question

Salut am adugat pe server un sistem de tuning luat dupa un alt server si imi da 26 de errori:

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3746) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3750) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3754) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3758) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3762) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3774) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3778) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3782) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3786) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3790) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3802) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3806) : error 004: function "PlayerToPoint" is not implemented

C:\Documents and Settings\Administrator\My Documents\My Videos\eGamer.pwn(3810) : error 004: function "PlayerToPoint" is not implemented

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

26 Errors.

Am adaugat :

#define PTP PlayerToPoint

forward PlayerToPoint(Float:radi, playerid, Float:x, Float:y, Float:z);

Ma puteti ajuta?

Respecta Si Vei Fi Respectat !!!

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Nu ai functia xD


Sterge forward PlayerToPoint si Adauga asta jos in Script:

[pawn]stock PlayerToPoint( Float: radi, playerid, Float: Z, Float: Y, Float: Z )

{

new

Float: oP[ 3 ],

Float: tP[ 3 ]

;

GetPlayerPos( playerid, oP[ 0 ], oP[ 1 ], oP[ 2 ] );

tP[ 0 ] = ( oP[ 0 ] - X );

tP[ 1 ] = ( oP[ 1 ] - Y );

tP[ 2 ] = ( oP[ 2 ] - Z );

if( ( ( tP[ 0 ] < radi ) && ( tP[ 0 ] > - radi ) ) && ( ( tP[ 1 ] < radi ) && ( tP[ 1 ] > - radi ) ) && ( ( tP[ 2 ] < radi ) && ( tP[ 2 ] > - radi) ) ) return ( 1 );

return ( 0 );

}[/pawn]

142sj0l.png

Underground-GFX

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.