Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to check if datastore value changed?

Asked by
npott13 23
8 years ago
Edited 8 years ago
01local dataservice = game:GetService('DataStoreService'):GetDataStore("example")
02game.Players.PlayerAdded:connect(function(player)
03 
04 
05----------------------------------------------------------------
06    local ukey = 'id-'..player.userId
07    local titanium = Instance.new('IntValue') --- Store titanium
08    local resources = Instance.new('Folder',player)
09    resources.Name = 'Resources'
10    titanium.Parent = resources
11    titanium.Name = 'Titanium'
12 
13 
14    local GetSaved = dataservice:GetAsync(ukey)
15    if GetSaved then
View all 47 lines...

The script above It's my datastore script obviously... what i'm trying to do is when a player who joined the game titanium value does not equal to 0 a part from lighting will be clone to the player instance folder called "resources". so anyone who joined the game as long as their titanium value does not equal to 0 it will clone the part...

THE PROBLEM

If a player is new to the game and of course the player titanium value is 0 because the player hasn't played yet meaning the the part will not be cloned.. since the player titanium value is 0. Now if the player during the game gathered a titanium using a tool inside the tool i have a script which will add a value to the player titanium

1Player.Resources.Titanium.Value = Player.Resources.Titanium.Value +5

Like that^, now i want to make it clone the part because the player titanium value is no longer equal to 0 and i want to clone the part only once just like when a player joins the game.

0
Does this need to be done through a data store? When and where does the titanium value change? User#5423 17 — 8y
0
You also should not be using lighting to store object, use server storage or rep storage. User#5423 17 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

You essentially need an "OnChange" event handler (or perhaps a "SetTitanium" method) that will keep track of this for each player. Since you're creating the titanium IntValue right there, it is easy to add an OnChange to it:

01if titanium.Value ~= 0 then
02    game.ReplicatedStorage.Items.Titanium:Clone().Parent = player:WaitForChild("PlayerStorage") --note that I've changed Lighting to ReplicatedStorage; you should move your stuff there
03    player.PlayerStorage.Titanium.Quantity.Value = titanium.Value
04else
05    local con --must have this on its own line to reference it in the Changed function
06    con = titanium.Changed:connect(function(prop)
07        if prop ~= "Value" then return end --This is mainly here because some Roblox properties have multiple names and trigger the Changed event multiple times, but we don't want to SpawnPart more than once.
08        if titanium.Value > 0 then
09            con:disconnect() --we no longer need to listen to the Changed event
10            game.ReplicatedStorage.Items.Titanium:Clone().Parent = player:WaitForChild("PlayerStorage")
11        end
12    end)
13end

As you can see, the idea is simply to keep track of the titanium value until it is non-zero. At that point, the player receives the cloned part. (You might want to put that cloning line into its own function to avoid duplication.)

Note: I do not update the PlayerStorage.Titanium.Quantity.Value in the OnChanged event. If you want that auomatically kept up-to-date, you can add it, but would then need to remove the con:disconnect() part.

The note beside the local con is saying that this wouldn't work:

1local con = titanium.Changed:connect(function(prop)
2    --con will be nil here, so calling con:disconnect() will create an error
3    --This is because, when the function is being created, 'con' doesn't exist. Once the function is created and passed to the 'connect' function, *then* 'con' is created.
4end)
Ad

Answer this question