Shadow2o1Join Date: 2007-12-10 Post Count: 202 |
I was wondering if anyone knew how to make it so that part of the leaderboard could be put in a hit, like in "Stealth Pilots Community". |
|
|
No one is gona share this with you unless your willing to pay |
|
KashiJoin Date: 2007-07-15 Post Count: 689 |
I would help you for free, but I gtg soon. Maybe if you already have a leaderboard set up, I could edit it for you. |
|
|
Could you do me too then XD |
|
KashiJoin Date: 2007-07-15 Post Count: 689 |
If you have a leaderboard all ready, I could edit it for you... |
|
|
Ok ill publish it and give the link hold on
|
|
|
KashiJoin Date: 2007-07-15 Post Count: 689 |
Ok, what exactly do you want me to display as a hint? |
|
|
Yeah and it only displays what you have. |
|
KashiJoin Date: 2007-07-15 Post Count: 689 |
So you want each person to be able to see how much money they have in a hint?
Couldn't they just look at the leaderboard this script is making>? |
|
|
i want a hint T^T i love hints i hate leaderboards cause noobs always go WHOA YOU HAVE ALOT OF BLAH. |
|
KashiJoin Date: 2007-07-15 Post Count: 689 |
Ok, well what you'd have to do is change the way you document how much cash everyone has. You'd need a script like this:
-----------------------------------
print("Cash Stuffs running!")
function onPlayerEntered(newPlayer)
wait(.5)
local cash = Instance.new("IntValue")
cash.Name = "Cash"
cash.Value = 25
cash.Parent = newPlayer
end
game.Players.ChildAdded:connect(onPlayerEntered)
-----------------------------------
and you'd have to change the things (like coins or whatever else you touch) that change the amount of money you have. You'd basically have to take out the step that looks for "leaderstats", so it just looks for "Cash" in their player. Then you'd also need a script like this (that might have to be fixed):
-----------------------------------
local p = game.Players:children()
for i=1, #p do
local cash = p:findFirstChild("Cash")
if cash ~= nil then
local hint = new.("Hint")
if p.Character ~= nil then
hint.Text = cash.Value
hint.Parent = p.Character
end
end
end
|
|
KashiJoin Date: 2007-07-15 Post Count: 689 |
That's as far as I can help you tonight, sorry. |
|
Shadow2o1Join Date: 2007-12-10 Post Count: 202 |
Any chance you could edit this script to work as a hint?
------------------------------------------------------------------------------------------------------------
function onPlayerEntered(newPlayer)
wait(.5)
local stats = Instance.new("IntValue")
stats.Name = "leaderstats"
local wood = Instance.new("IntValue")
wood.Name = "Wood"
wood.Value = 25
local stone = Instance.new("IntValue")
stone.Name = "Stone"
stone.Value = 25
wood.Parent = stats
stone.Parent = stats
stats.Parent = newPlayer
end
game.Players.ChildAdded:connect(onPlayerEntered)
|
|
Shadow2o1Join Date: 2007-12-10 Post Count: 202 |
...and sorry I didn't help earlier, it was late when I posted this.... |
|
|
|
|
Sorry its just that i really want this leaderboard |
|
|
|
Wow you must realy want this leaderboard XD |
|
|
|
BUMP!!!!!!!!!!!!!!!!!!!!!!!!!! |
|
|
Omg come on someone has to help us >_< kashi's doesnt work V_V |
|
|
Omg BUMP!!!!!!!!!!!!!!!!! |
|
|
For pete sake BUMP!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! |
|