Page 1 of 1

Runuo - Sysmessages

Posted: 2010-04-08 23:56:13
by Xpree
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

Posted: 2010-04-09 08:19:50
by Beyonder
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

Posted: 2010-04-09 15:55:44
by Xpree
i will try... if any1 could help me with a exemple would be great.

would be something like

Code: Select all

uo.injournal('cliloc # 0x05BD')
??

Re: Runuo - Sysmessages

Posted: 2010-04-09 21:27:01
by Beyonder
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").

Re: Runuo - Sysmessages

Posted: 2010-04-09 21:53:50
by Xpree
ty for insight... will try it when i get home.