- Initiateur de la discussion
CMJN
Sataniste en herbe
- Messages
- 330
- Score réaction
- 32
- Points
- 130
Bonjour/Bonsoir
J'ai chercher sur internet pour trouver comment avoir la meme money pour darkrp et le pointshop 1.
J'ai trouver ce code:
Mais il ne marche pas, quand on achete une chose dans le pointshop, sa n'enleve pas de l'argent, help plz
J'ai chercher sur internet pour trouver comment avoir la meme money pour darkrp et le pointshop 1.
J'ai trouver ce code:
Code:
hook.Add("Think", "Points2Cash&Back", function()
for k, v in pairs(player.GetAll()) do
local points = v:PS_GetPoints()
local cash = v.DarkRPVars.money
if v.oldpoints and v.oldcash then
if points > v.oldpoints or points < v.oldpoints then
cash = points
elseif cash > v.oldcash or cash < v.oldcash then
v:PS_SetPoints(cash)
end
if not v.oldpoints and v.oldcash then
if cash > points then
v:PS_SetPoints(cash)
else
cash = points
end
end
end
v.oldpoints = points
v.oldcash = cash
end
end)