Jump to content

Don't work


manve1

Recommended Posts

solidsnake helped me to make that player color codes won't be seen able and i tried making it to functions, but now something is actually wrong, i got messed up with it, and only check box is seen able, nothing else on the script

check box:

checkedBox = guiCreateCheckBox(30,330,150,20,"Color Names",false,false,Wnd) 

script:

function updateColumnorCodes() 
    local lists = { Grid } 
    for _,Grid in ipairs(lists) do 
        for Row=0,guiGridGetRowCount(Grid)-1 do 
            guiGridSetItemPlayerName( Grid, Row, 1, guiGridGetItemPlayerName( Grid, Row, 1 ) ) 
        end 
    end 
end 
  
function guiGridSetItemPlayerName( Grid, Row, Column, name ) 
    local hide = guiCheckBoxGetSelected ( checkedBox ) 
    guiGridSetItemText( Grid, Row, Column, hide and removeColorCoding(name) or name, false, false ) 
    guiGridSetItemData( Grid, Row, Column, name ) 
end 
  
function guiGridGetItemPlayerName( Grid, Row, Column ) 
    return guiGridGetItemData( Grid, Row, Column ) or guiGridGetItemText( Grid, Row, Column ) 
end 
  
function removeColorCoding( name ) 
    return type(name)=='string' and string.gsub ( name, '#%x%x%x%x%x%x', '' ) or name 
end 

EDIT: or if you could help me with other kinda way of an script, i don't care if its massive or not.

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...