Search found 2 matches

by JamesConway
October 25th, 2019, 9:27 am
Forum: Releases
Topic: Goodfellas - Deathmatch
Replies: 0
Views: 6603

Goodfellas - Deathmatch

This is the Goodfellas deathmatching server. Anyone may use this code if he wishes. Also if you have feedback for the code, I'm happy to know about it. If you have questions, also post them here.

https://github.com/ThomasDuin/Goodfellas-Deathmatch
by JamesConway
December 12th, 2018, 2:32 pm
Forum: Releases
Topic: Snippet: Using your car indicators
Replies: 0
Views: 6869

Snippet: Using your car indicators

function playerKeyPress(playerId, virtualKey, isKeyUp) local vehicleId = isPlayerInAnyVehicle(playerId) if(isKeyUp) then if(vehicleId > 0) then if(virtualKey == 0x45) then local toggled = getVehicleIndicator(vehicleId, 1) setVehicleIndicator(vehicleId, 1, not toggled) elseif(virtualKey == 0x51) the...