Path layout for San Andreas Multiplayer.
- Download the latest version in releases
- Enter this line in your initial script
#include <route-tracing>
- Install Modern GPS
- Install Pawn.RakNet
- Put
GPS.dat
file inscriptfiles/
In the test.pwn
file you have a usage example.
public OnPlayerClickMap(playerid, Float:fX, Float:fY, Float:fZ)
{
StartTracing(playerid, fX, fY, fZ);
return 1;
}
So that routes can be drawn at great distances route-tracing has built-in functions to create gangzones per player, using Pawn.RakNet, 512 gang zones are reserved for operation. Before it was not used, making the limit of 50 gangzones making no more than 20 players can use them at the same time.
StartTracing(playerid, Float:x, Float:y, Float:z);
CancelTracing(playerid);
SetTracingColor(playerid, color);
GetTracingColor(playerid);