~Gangsta~ Posted September 27, 2013 Share Posted September 27, 2013 Hi all, how can disable a Freeroam in another dimension Link to comment
iPrestege Posted September 27, 2013 Share Posted September 27, 2013 Hello :") . You can do that with these steps : - Open Freeroam resource . - Open fr_client.lua file . - Go To 'toggleFRWindow' function at 1596 line as it showed on my screen . - Add a new code to check the player dimension and here's an example . - And it should open the freeroam for the player how is at dimension '1' . Ex : if getElementDimension ( g_Me ) ~= 1 then return false end function toggleFRWindow() if getElementDimension ( g_Me ) ~= 1 then return false end if isWindowOpen(wndMain) then showCursor(false) hideAllWindows() colorPicker.closeSelect() else showCursor(true) showAllWindows() end end Good luck. Link to comment
myonlake Posted September 27, 2013 Share Posted September 27, 2013 In addition to that, there are some commands that are still available. You should look around the file and disable the commands with the same style as Prestege showed above. Link to comment
~Gangsta~ Posted September 28, 2013 Author Share Posted September 28, 2013 thanks for the help Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now