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.
GM Hiding Tools?
-
gundamwing84
- Grandmaster Poster
- Posts: 178
- Joined: Tue Sep 08, 2009 1:57 am
GM Hiding Tools?
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 
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.
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.
Re: GM Hiding Tools?
check the commands package or the textcmd package depending on your POL function. In 096 and below there is a .concealme command.
Re: GM Hiding Tools?
Here's a simple conceal command:
And an unconceal command:
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.
Code: Select all
program conceal(who)
who.concealed := 3;
endprogramCode: Select all
program unconceal(who)
who.concealed := 0;
endprogramPOL 0.97 Distro and higher have them under \pol\pkg\commands
Hope this helps.