Page 1 of 1

Removing the Relto book and KI from avatar

Posted: Thu 7. Mar 2013, 12:01
by Loc2262
Hellos!

We are currently experimenting with the CWE Uru client, which allows access to the Plasma console and to the Python script files.

We are wondering how you managed to implement your commands to remove the Relto book and the KI from the player avatar display. Is there a sequence of console or Python commands to achieve that? Any help is appreciated!

Re: Removing the Relto book and KI from avatar

Posted: Thu 7. Mar 2013, 17:30
by Mystler
Do you mean the ones on the avatar or in the GUI?

You can hide the GUI elements by sending a disable message to the KI via Python:

Code: Select all

PtSendKIMessage(kDisableKIandBB, 0)

Re: Removing the Relto book and KI from avatar

Posted: Thu 7. Mar 2013, 19:13
by Loc2262
Hehe, thanks! No I meant the graphics on the avatar itself. I remember that on TOC you have a KI command like "/removereltobook"; I'd like to know how these work on a Python level so that I can reproduce it in the CWE Uru client.

I tried to find out what the object names are so that I can call like PtFindSceneobject(...).draw.disable() which works with a lot of other stuff. But for the avatar I obviously need to access specific avatars and can't just access the global scene objects.

Re: Removing the Relto book and KI from avatar

Posted: Fri 8. Mar 2013, 20:38
by Mystler
I guess I removed that command since you were able to strip yourself of your KI and relto book "by accident".

However, this might help you.

Re: Removing the Relto book and KI from avatar

Posted: Fri 8. Mar 2013, 23:33
by Loc2262
Oooh, so those things are clothing items. Great, that should definitely help! I'll try it out as soon as I get to my gaming PC. Thanks a bunch!