Skip to content

wuzi/radars

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Radars

A SA:MP library containing functions to create speed radars to detect when a player exceeds the speed limit.

Creating a radar

You can use the radar creator or place the object id 18880 with samp-map-editor and get the coordinates.

Example

new gRadar;

public OnGameModeInit()
{
    gRadar = CreateRadar(2156.21, -2036.12, 36.11,   0.00, 0.00, 0.00);
    return 1;
}

public OnPlayerEnterRadar(playerid, radarid, Float:speed)
{
    switch(radarid)
    {
        case gRadar:
        {
            GameTextForPlayer(playerid,"~r~You were fined!", 5000, 3);
            GivePlayerMoney(playerid, -500);
        }
    }
    return 1;
}

Functions

Check wiki for a list with functions.

About

A SA:MP library to make speed traps

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages