-_-Varial^_^ Posted April 22, 2012 Share Posted April 22, 2012 hi guys, its me again. can someone send me a script that player gives money and they can see n the scoreboard? [that it gives money when they win a race] Link to comment
Castillo Posted April 22, 2012 Share Posted April 22, 2012 -- server side: 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
-_-Varial^_^ Posted April 23, 2012 Author Share Posted April 23, 2012 solid snake does this has a client side to? and can u send me the meta? if u do : thnx alot if u dont :(D: Link to comment
Absence2 Posted April 23, 2012 Share Posted April 23, 2012 adding that in any serverside script will work. no client, that script solid posted is what you want. https://wiki.multitheftauto.com/wiki/Meta.xml Link to comment
-_-Varial^_^ Posted April 23, 2012 Author Share Posted April 23, 2012 i have one more question to solid. does this work when a player wins a race he gets money like 340 or 1000? Link to comment
Smart. Posted April 23, 2012 Share Posted April 23, 2012 i have one more question to solid.does this work when a player wins a race he gets money like 340 or 1000? Why not try? But to answer your questions, yes it should. It takes the players money, and updates is every 2.5 seconds. Link to comment
Castillo Posted April 23, 2012 Share Posted April 23, 2012 i have one more question to solid.does this work when a player wins a race he gets money like 340 or 1000? The money will update as long as your script uses the default money system. Link to comment
-_-Varial^_^ Posted April 25, 2012 Author Share Posted April 25, 2012 thnx a lot solid ur a really nice guy 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