Jump to content

convertNumber


Chaos

Recommended Posts

hi,

how to use that function convertNumber with money scoreboard ??

  
exports [ "scoreboard" ]:addScoreboardColumn ( "Money", 3 ) -- Add the "Money" column to the scoreboard. 
      
    function updatePlayersMoney ( ) -- Create "updatePlayersMoney" function. 
        for index, player in ipairs ( getElementsByType "player" ) do -- Loop through all online players. 
            setElementData ( player, "Money", getPlayerMoney ( player ) ) -- Set "Money" element data to the player money. 
        end -- End our loop. 
    end -- End our function. 
    setTimer ( updatePlayersMoney, 2500, 0 ) -- Set a infinite 2.5 seconds timer to execute "updatePlayersMoney" function. 
  
  
  

Link to comment

You want to use it for the Money column in scoreboard, right?

Use this then:

exports [ "scoreboard" ]:addScoreboardColumn ( "Money", 3 ) -- Add the "Money" column to the scoreboard. 
      
    function updatePlayersMoney ( ) -- Create "updatePlayersMoney" function. 
        for index, player in ipairs ( getElementsByType "player" ) do -- Loop through all online players. 
            setElementData ( player, "Money", convertNumber(getPlayerMoney ( player )) ) -- Set "Money" element data to the player money. 
        end -- End our loop. 
    end -- End our function. 
    setTimer ( updatePlayersMoney, 2500, 0 ) -- Set a infinite 2.5 seconds timer to execute "updatePlayersMoney" function. 

Was that so hard?

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