Jump to content

Freeroam


~Gangsta~

Recommended Posts

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...