File size: 505 Bytes
57a3a9f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
--[[
Project: SF.lua <https://github.com/imring/SF.lua>
License: MIT License
Author: imring
]]
local sampapi = require 'sampapi'
local shared = require 'sampapi.shared'
local ffi = shared.ffi
local netgame = sampapi.require('CNetGame', true)
sampapi.require('CGangZonePool', true)
local function gangzonepool()
return netgame.RefNetGame().m_pPools.m_pGangZone
end
function sampGetGangzonePoolPtr()
return shared.get_pointer(gangzonepool())
end
jit.off(sampGetGangzonePoolPtr, true) |