GM Hiding Tools?

Get Help on scripting in POL with configurations, config setups, script trouble shooting, etc.
Post Reply
gundamwing84
Grandmaster Poster
Posts: 178
Joined: Tue Sep 08, 2009 1:57 am

GM Hiding Tools?

Post by gundamwing84 »

i was wondering if there were any custom hiding scripts avaliable for the GM's(so that they can go into hiding and run around and what not without using hiding and stealth skill). If there isnt any avaliable for people to share, could i please have a template to make my own? for i am new to pol scriting and wish to learn a bit about it, Thanks in advance :P

Also, does anyone have an origional verdata.mul file they can upload and give me a link too? i wish to install my own GUI skin.
Damien.
Journeyman Poster
Posts: 63
Joined: Thu Feb 08, 2007 11:14 am

Re: GM Hiding Tools?

Post by Damien. »

check the commands package or the textcmd package depending on your POL function. In 096 and below there is a .concealme command.
Yukiko
Distro Developer
Posts: 2826
Joined: Thu Feb 02, 2006 1:41 pm

Re: GM Hiding Tools?

Post by Yukiko »

Here's a simple conceal command:

Code: Select all

program conceal(who)
    who.concealed := 3;
endprogram
And an unconceal command:

Code: Select all

program unconceal(who)
    who.concealed := 0;
endprogram
These don't display any flashy flaming animations and such but they get the job done. Make sure you place them in your GM commands directory or at the least in the Councillor directory. The location of this will vary depending on which version of POL you are using. I assume you are POL 0.95 since you are asking for verdata files. The general purpose commands in POL 0.95 are under \pol\scripts\textcmd\

POL 0.97 Distro and higher have them under \pol\pkg\commands

Hope this helps.
Post Reply