âŠī¸Events
Client
Server
gw:onWarSent
Example
RegisterNetEvent('gw:onWarSent', function(playerId, gang, toGang, price)
print(GetPlayerName(playerId)..' ('..gang..') sent a war to: '..toGang..' for: '..tostring(price))
end)
gw:onWarDeclined
Example
RegisterNetEvent('gw:onWarDeclined', function(playerId, gang, fromGang, price)
print(GetPlayerName(playerId)..' ('..gang..') declined a war from: '..fromGang..' for: '..tostring(price))
end)
Last updated