Runuo - Sysmessages
Moderators: Murderator+, Murderator
Runuo - Sysmessages
I'm Trying to right down a script for a runuo server, but somehow the uo.injournal isn't detecting the messages for skills like Meditation or Stealth or any kind of skill relatated message returned, there is any way to detect that?
Re: Runuo - Sysmessages
Runuo uses clilocs, and Injection does not resolve the text stored in clilocs. You can try doing ,showjournal and if you are lucky - you will see cliloc numbers there instead of text. You should use that cliloc numbers in journal functions.
Re: Runuo - Sysmessages
i will try... if any1 could help me with a exemple would be great.
would be something like??
would be something like
Code: Select all
uo.injournal('cliloc # 0x05BD')
Re: Runuo - Sysmessages
Generally yes, however I am not sure what exactly injection logs in it's journal. But whatever you see in the ,showjournal command - you can use inside UO.InJournal command.
If you see "#12345" you should use UO.InJournal("#12345"). If you see "Blablacliloc123456" you should use UO.InJournal("Blablacliloc123456").
If you see "#12345" you should use UO.InJournal("#12345"). If you see "Blablacliloc123456" you should use UO.InJournal("Blablacliloc123456").
Re: Runuo - Sysmessages
ty for insight... will try it when i get home.