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!
Removing the Relto book and KI from avatar
- Mystler
- Development Manager
- Posts: 651
- Joined: Mon 11. Jul 2011, 16:14
- Gender: Male
- TOC-MOUL Name: Mystler
- TOC-MOUL KI#: 346
- MOULa Name: Mystler
- MOULa KI#: 150272
- Location: Germany
- Contact:
Re: Removing the Relto book and KI from avatar
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:
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
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.
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.
- Mystler
- Development Manager
- Posts: 651
- Joined: Mon 11. Jul 2011, 16:14
- Gender: Male
- TOC-MOUL Name: Mystler
- TOC-MOUL KI#: 346
- MOULa Name: Mystler
- MOULa KI#: 150272
- Location: Germany
- Contact:
Re: Removing the Relto book and KI from avatar
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.
However, this might help you.
Re: Removing the Relto book and KI from avatar
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!