- 111
- 24
помогите с скриптом
Сделать так чтобы он вместо текста внизу экрана писал сколько денег добавилось в чате
Сделать так чтобы он вместо текста внизу экрана писал сколько денег добавилось в чате
Код:
script_name("I_LIKE_MONEY")
script_authors("Vadyao")
function main()
omon = 0
while true do wait(5000)
mon = getPlayerMoney(Player)
if mon ~= omon then
if mon > omon then
printStringNow('+~g~'..comma_value(mon-omon)..'$', 3000)
print('+'..comma_value(mon-omon)..'$')
else
printStringNow('-~r~'..comma_value(omon-mon)..'$', 3000)
print('-'..comma_value(omon-mon)..'$')
end
omon = mon
end
end
end
--позаимствовал из скрипта money_separator(Royan Millans)
function comma_value(n)
local left,num,right = string.match(n,'^([^%d]*%d)(%d*)(.-)$')
return left..(num:reverse():gsub('(%d%d%d)','%1,'):reverse())..right
end