Author Topic: Invisibility Script V2  (Read 13642 times)

Invisibility Script V2
Make your player disappear!

I decided to make a nice simple lil' set of scripts that are neat to mess around with and can often come in handy for making movies. I present to the the Hide script. Due to the obvious abusability of allowing any player to dissapear completely, I also made another script which only allows admins to "hide". Because typing /invisibilty was a wee bit long, I made the command /hide. Enjoy!

V2: Now includes the ability to un-hide and to toggle between all players and admin mode using the /togglehide and /unhide commands.

Download:
If you downloaded this add-on before Saturday May 16th, please re-download!
http://www.mediafire.com/?mj1u3dmumyk
« Last Edit: May 16, 2009, 12:01:59 PM by cucumberdude »

Make a cloaking item and i will love you.


Like the spy's in TF2.. You can only stay cloaked for like.. what? 20 sec?

Like the spy's in TF2.. You can only stay cloaked for like.. what? 20 sec?
I believe you can use that schedule thing and set the time to 200000 i think it is?


I believe you can use that schedule thing and set the time to 200000 i think it is?
No it would be 20000.

Also, what schedule thing? this isn't an event? right? D:

No it would be 20000.

Also, what schedule thing? this isn't an event? right? D:
Schedules are like setting the delay time for events, only you can do it in a .cs file

I don't exactly know much about the schedule, but it's something like this :/

Schedules are like setting the delay time for events, only you can do it in a .cs file

I don't exactly know much about the schedule, but it's something like this :/
Oh, i see what you mean. :P


Also, if cucumberdude makes a weapon/item.. He can use this.


I made it a while ago.. But never used it for anything.
If you want this cucumber.. Let me know.

Like, right click could be cloak.. and left click could be normal mele hit.
Idk..

Nice i have a epic TF2 build and i could make the spy admin only
Thanks for the script  :cookieMonster:

Already made in FFC, also, easiest script ever to make and I would have made it an item, I may just to one-up him.

I want that sword so baaaaad!

I've been slowly making this into an item myself for some time now :D

only problem is I ahve no idea how to make yourself visible again.

I've been slowly making this into an item myself for some time now :D

only problem is I ahve no idea how to make yourself visible again.
commandToClient(%client,updatePrefs);
Would be the same as them hitting done on their avatar editor.

Does this make you semi-transparent?

Nice to have this without having to use FCC's, because that has so many bugs in it.

Kind of fails...

Code: [Select]
function serverCmdHide(%client)
{
if(%client.isAdmin || %client.isSuperAdmin)

{
%client.player.hideNode("ALL");
}

}