[Looking]For a scripter ! -
[Aka]Dragonu - 03.12.2010
I am looking for a scripter to solve me some bugs and script me some simple command . I am paying on paypal !
My msn :
Aka_dragonu@hotmail.com
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
Still not found one . BUMP !
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
how could i help?
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
Hmm got msn ? take mein . I will pay good money for helping me with that checkpoint .
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
i dont need any money, ill do it for free plus i dont got a paypall so its no problem i like to help other scripters, and did i get the checkpoint thing correct for ya
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
Look i have a picture taken from another server i want my checkpoint to look like this :
Re: [Looking]For a scripter ! -
Fj0rtizFredde - 05.12.2010
Pm your msn and details and I will help
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
I have my msn posted up : My msn :
Aka_dragonu@hotmail.com
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
then you would use, sorry of bad indetation, not use to forum indent
pawn Код:
if (IsPlayerInRangeOfPoint(playerid, 1, X, Y, Z))
SetPlayerCheckpoint(playerid, X , Y, Z, 2);
}
else
{
DisablePlayerCheckpoint(playerid);
}
return 1;
}
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
Where to add this ? Sorry for being so noob
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
well that depends on the script/my email is
Fangoth3@hotmail.com
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
if i add on : public OnPlayerConnect(playerid) its good ?
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
yes, that should work but you may have to add extra closing bracket's
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
4 errors : D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5016) : error 010: invalid function or declaration
D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5019) : error 021: symbol already defined: "SetPlayerCheckpoint"
D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5021) : error 010: invalid function or declaration
D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5025) : error 010: invalid function or declaration
you got msn ?
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
msn messanger?
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
yeah so you can help me better there please .... i am trying this checkpoint for 3 days
Re: [Looking]For a scripter ! -
Hal - 05.12.2010
Quote:
Originally Posted by [Aka]Dragonu
if i add on : public OnPlayerConnect(playerid) its good ?
|
Quote:
Originally Posted by fangoth1
yes, that should work but you may have to add extra closing bracket's
|
Quote:
Originally Posted by [Aka]Dragonu
4 errors : D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5016) : error 010: invalid function or declaration
D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5019) : error 021: symbol already defined: "SetPlayerCheckpoint"
D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5021) : error 010: invalid function or declaration
D:\Games\GTA San Andreas\server\gamemodes\slrpg.pwn(5025) : error 010: invalid function or declaration
you got msn ?
|
That will not work. It will check if they are in the checkpoint ONLY when they connect. You have to either make a timer, or put it in OnPlayerUpdate (will cause lag)
This guy has no idea what he is talking about, he doesnt want money cause he isn't worth anything.
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
i can make one and btw Hal, dont try to offend other people
Re: [Looking]For a scripter ! -
[Aka]Dragonu - 05.12.2010
Hal you can script ? add me on msn i am paying on paypal !
Re: [Looking]For a scripter ! -
fangoth1 - 05.12.2010
here ive tested in game use your own cords though, you have to be pretty much exactly at cords for it to show
pawn Код:
public OnPlayerUpdate(playerid)
{
if (IsPlayerInRangeOfPoint(playerid, 0.3, 83.93970489502, -149.35932922363, 2.2334928512573))
{
SetPlayerCheckpoint(playerid, 83.93970489502, -149.35932922363, 2.2334928512573, 2);
}
else
{
DisablePlayerCheckpoint(playerid);
}
return 1;
}