Everyone who has never used our Bots before, can test each one for 2 days without any limitation.
The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons).
If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Print onto Console or a HUD?
#1
Exclamation 
Hi,

I was wondering if its possible to print lines of text from "Server Log" channel that contain "You gained" for example "You gained 30 mana." with a time stamp applied and it shows a list of each one of those (basically excluding all the "A spider loses 41 hit points due to your attack./ You lose 10 hit points" etc)

If it could log in "Console" or as a list on a HUD that shows like the last 10 instances of it with time stamps that would be amazing.


Thanks
Reply

#2
local messages = getnewmessages()
for _, msg in ipairs(messages) do
    local msg_lower = msg.content:lower()
    if string.find(msg_lower, 'you gained') ~= nil then
        print(msg.content)
    end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016