Hi all!
I started coding LFSLapper cruise plugin about week and half, and the results are quite amazing!
Reading and researching helps a lot!
After I finished making jobs etc, I forgot to add GPS from player position to job/place position.
But it's quite hard for me since i started week ago.
I have tried something like this.
Now
has nothing in it, and I'm afraid that LFSLapper doesn't catch the job position as i registered with RegisterZoneAction.
Any help is appreciated!
I started coding LFSLapper cruise plugin about week and half, and the results are quite amazing!
Reading and researching helps a lot!
After I finished making jobs etc, I forgot to add GPS from player position to job/place position.
But it's quite hard for me since i started week ago.
I have tried something like this.
Sub JobGPS()
IF ( GetCurrentPlayerVar( "JobTest" ) == "1" )
THEN
IF ( DistFromPlace($userName,$argv) <= "450" )
Return( "^7GPS: ^0••••••" );
ENDIF
IF ( DistFromPlace($userName,$argv) <= "250" )
Return( "^7GPS: ^0••^3••^0••" );
ENDIF
IF ( DistFromPlace($userName,$argv) <= "100" )
Return( "^7GPS: ^0•^2••••^0•" );
ENDIF
IF ( DistFromPlace($userName,$argv) <= "50" )
Return( "^7GPS: ^2••••••" );
ENDIF
ENDIF
EndSub
Now
Sub DistFromPlace()
has nothing in it, and I'm afraid that LFSLapper doesn't catch the job position as i registered with RegisterZoneAction.
Any help is appreciated!