View difference between Paste ID: UBQZ99pS and afXL3zsY
SHOW: | | - or go back to the newest paste.
1
local config = {
2
msgs = "Parabens, voce obteve double exp!."
3
  }
4
local rates = 2
5
6
-- End Configs --
7
function onUse(cid, item, frompos, item2, topos)
8
    if isPremium(cid) and doPlayerRemoveMoney(cid, 2000) == TRUE then
9
        doPlayerSetMagicRate(cid, rates*60)
10-
            doPlayerPopupFYI(cid, config.msgs)
10+
          doPlayerPopupFYI(cid, config.msgs)
11-
     end
11+
       end
12-
return TRUE
12+
  return TRUE
13
end