mirror of
https://github.com/ProjectEQ/projecteqquests
synced 2026-08-12 00:26:10 -04:00
11 lines
No EOL
182 B
Lua
11 lines
No EOL
182 B
Lua
-- CHRMPlatinum
|
|
|
|
function event_scale_calc(e)
|
|
local money = e.owner:GetAllMoney() / 100000000;
|
|
|
|
if(money < 0) then
|
|
money = 0;
|
|
end
|
|
|
|
e.self:SetScale(money);
|
|
end |