• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Linux Invisible / Ghost

Joined
May 23, 2010
Messages
185
Reaction score
23
I using 0.3.6pl1.r83 TFS, i want to know how can i make a invisible effect without the "utana vid" effecct, i like a script that hide the life bar, the name and the outfit, if i have to change sources please, give me a way to do that.

Thankx
 
Add a new group in groups.xml:
Code:
	<group id="7" name="Invisible Player" ghostAccess="3" flags="70368744177664"/>
Use this in your script:
Code:
doPlayerSetGroupId(cid, 7)
The only limitation of doing this in Lua is that players will still see the player at the position he/she went invisible, until they receive that tile again from the server.
 
Back
Top