example
example

已解决√ 求助 介是为嘛?

启用GTA原生的大地图模式了,用这个API能关闭
具体代码如下:
Lua:
CreateThread(function()
    while true do
        if IsBigmapActive() then
            SetBigmapActive(false)
        end
        Wait(1000)
    end
end)
将其置于任意客户端脚本中即可
 
启用GTA原生的大地图模式了,用这个API能关闭
具体代码如下:
Lua:
CreateThread(function()
    while true do
        if IsBigmapActive() then
            SetBigmapActive(false)
        end
        Wait(1000)
    end
end)
将其置于任意客户端脚本中即可
感谢
 
后退
顶部