Forums Index >> Modding >> Art Crazy's Admin Script!



Page : 1 : 2 : 3 : <4> : 5


EDIT:
There is an updated version, lik, and post in the general forum, linky:

http://supra.planetthinktanks2.com/archives/comm-thread.asp?thread=13581&forum=4


Last edited: Monday, August 21, 2006 at 12:38:32 PM

Saturday, August 27, 2005 at 7:15:44 AM

The admin tank won't work! :( :[

Sunday, December 18, 2005 at 6:35:42 PM

You have to download the AdminShip yourself and rename it "AdminTank."
Same with the Jeep, except you don't have to rename it. I found this out when one kind person told me that the Jeep didn't work.

Monday, December 19, 2005 at 4:43:12 AM

The admin tank shows up white :'( :S

Monday, December 19, 2005 at 12:28:16 PM

I did put the skins!

Monday, December 19, 2005 at 4:48:29 PM

Are they named the same as the.dts file? Are the skins white?

Monday, December 19, 2005 at 5:19:43 PM

No but I did put them in the tanks file too! :'(

Tuesday, December 20, 2005 at 3:36:09 PM

The gui version dosent work for me

P.s I am sounding like a noob huh.

Friday, December 30, 2005 at 8:57:05 PM

Put them in data/shapes/AdminTank.
And GUI version doesn't work with Macs.
Yes, you are, but people will still help you.

Saturday, December 31, 2005 at 5:08:39 AM

I figured out that the main.cs won't edit for me any more :[

Saturday, December 31, 2005 at 11:48:35 AM

I got it to work

The invisible code dosent work :[

Monday, January 16, 2006 at 4:13:11 PM

Correction.. I made the invisible code work (HEHE)

Friday, January 27, 2006 at 10:18:36 AM

If you release it I know it would be deleted... And you'd probably be silenced/banned...
Well at least if it was my script... If you did it from scratch go right ahead ;)


Friday, January 27, 2006 at 10:33:28 AM

Repent can you unban me from your server?

One day I wasn't banned the next day I was :S

Friday, January 27, 2006 at 10:58:01 AM

What did you do wrong??? Oh and tell the Truth!

4/1/1929 to 11/17/2006 Rest in Peace Bo. GO BLUE!!!

Last edited: Friday, January 27, 2006 at 11:00:20 AM

Friday, January 27, 2006 at 10:59:54 AM

Actually I just wanted to know the pass to a server and he banned me.

I apologized and he said ask you to unban me.

Saturday, January 28, 2006 at 4:52:26 PM

I dont have the TankDb.cs file; only the DSO; whre to get it???

 

 

 

 

Saturday, February 04, 2006 at 12:54:36 AM

Where do I put the files

Saturday, February 04, 2006 at 6:35:56 PM

Ok ill try

Sunday, February 05, 2006 at 6:23:56 AM

Ok ill try

Sunday, February 05, 2006 at 6:23:57 AM


the sites down!

Sunday, February 05, 2006 at 2:20:10 PM

Ok its up and where is the admin tanks and the jeep file again XO

Last edited: Monday, February 06, 2006 at 3:42:32 AM

Sunday, February 05, 2006 at 5:11:19 PM

Where Is the tank dbs file

Last edited: Monday, February 06, 2006 at 12:40:52 PM

Monday, February 06, 2006 at 12:21:41 PM

Tell him where DJ

Monday, February 06, 2006 at 7:19:04 PM

Ok. I cant belive I got this workin. A few ques... How do you swith the name such as when you first come into ther server it tells who the host is. It still syas NAME. Also I cant hear my area effect.

Cloud

Wednesday, February 08, 2006 at 11:23:42 PM

I quit usind Dashes one

Monday, February 13, 2006 at 5:18:42 PM

Ok I just now tried installin this today and it may not shock you guys to hear this q.
When I open my scripts folder al I see is my tankdb.cs file but it is my DOS file. Should I edit this or go to MODDING RESOURCE and find it.

Tuesday, February 21, 2006 at 10:15:45 AM

Go to the Modding Resource, definitely.

Tuesday, February 21, 2006 at 12:49:49 PM

//Execos2 to be called from the special.cs
function execos2()
{
exec("./Observer 2.cs");

Observer 1.cs asks for a Observer 2, but there aint is a observer 2! :(

 

 

 

 

Wednesday, February 22, 2006 at 9:28:19 AM

^dont worry, I had that for an older version, and never removed it... That function is NEVER executed unless you add it manually...
It was my old way of executing stuff after tank.cs, I told people to put a schedule for that function in the special.cs (as tank.cs is executed right after)
It won't harm you in any ways, dont worry :)


Wednesday, February 22, 2006 at 1:56:23 PM

Art quick question, I have added a few extra weapons to my special.cs and wanted to be able to use the ACAS to activate them in game. So I added three additional else if statements to the admin codes.cs and that workes fine. However following this I made another 2 weapons and a couple of tanks and added them in the same way, but this time an advance script error came up on the dedicated console window. I hav also got another 3 weapons to add.

Any ideas?

Here is what I added that worked fine and have double/treble checked the additional what if statements I added for the extra weapons and tanks and it is identical, any ideas/suggestions?

 

Else if(%code $= "/flame")
{
if(IsDictator(%sender,"You're not a Dictator"))
admprojectilechanger(%sender,%msg,"FlamethrowerProjectile");
return;
}
else if(%code $= "/bomb")
{
if(IsDictator(%sender,"You're not a Dictator"))
admprojectilechanger(%sender,%msg,"NukebombProjectile");
return;
}
else if(%code $= "/fire")
{
if(IsDictator(%sender,"You're not a Dictator"))
admprojectilechanger(%sender,%msg,"FireRingProjectile");
return;
}

 

This is the additional what if statements I added for the extra weapons and tanks and it is identical, any ideas/suggestions?

 

Else if (%code $= "/astir")
{
if(IsDictator(%sender,"You're not a Dictator"))
admtankchanger(%sender,%msg,"SpecialTank");
return;
}
else if (%code $= "/dazmin")
{
if(IsDictator(%sender,"You're not a Dictator"))
admtankchanger(%sender,%msg,"DazminTank");
return;
}
else if(%code $= "/gun")
{
if(IsDictator(%sender,"You're not a Dictator"))
admprojectilechanger(%sender,%msg,"GunProjectile");
return;
}
else if(%code $= "/special")
{
if(IsDictator(%sender,"You're not a Dictator"))
admprojectilechanger(%sender,%msg,"SpecialProjectile");
return;
}

 

The first else is in lower case in the script but PTT changes this to capital, I am aware of that.

Daz

 

 

 

 

 

Last edited: Wednesday, February 22, 2006 at 4:35:05 PM

Wednesday, February 22, 2006 at 4:23:45 PM

I once had that prob...It's too many if statements. Just try to find four useless ones you don't need, and delete those, or just put in those codes in a different script.

E.g:

 

                                        
<IF STATEMENTS HERE>
else
{
Dazzlecodes(<variables, too lazy to type them>);
}

 

Then, in a different function, put all your other if statements.

Wednesday, February 22, 2006 at 5:55:53 PM

Yes I tried that, I created annew functuon in the admin codes.cs file and called it function AdminCodes2(%sender,%a2)

Still got the same error, I even created another cs file and executed that from the main.cs in the admin script folder, same result.

Any solutions, withouit deleting some of the codes in the admin codes.cs?

Daz

 

 

 

 

Last edited: Friday, February 24, 2006 at 5:55:05 AM

Thursday, February 23, 2006 at 11:23:10 PM

^can't help him... But he posted the 200th post :P

EDIT : I didn't want to get spamming here so here's my question

 

How to get |admin| after you're name if you are admin? - I saw people doing it - do you need an extra script or so?

 

 

 

 

 

 

Last edited: Friday, February 24, 2006 at 10:40:04 PM

Friday, February 24, 2006 at 9:38:28 AM

It's a rename function.

"/r OLDNAME NEWNAME".

Saturday, February 25, 2006 at 3:11:15 AM

Except fer ^ u need cant put spaces or it will mess up. Like so (ex.)
say ur name was bad teen (hehehe)
/r bad teen bad teen{admin}- it will turn out teen bad teen{admin}
wat u should type
/r bad bad teen{admin}

Just make sure u use a recognizable word that is in theri name. Hope this clarifies it more! XD

Saturday, February 25, 2006 at 4:09:47 AM

I need to know how to login as admin its not working wat I typed in /adm PASSWORD is that wrong

Saturday, February 25, 2006 at 5:03:57 AM

When we say "type /adm PASSWORD," what we mean by "PASSWORD" is the dictator password set in the Art Crazy prefs.cs.

Saturday, February 25, 2006 at 5:07:41 AM

@ mon and blitz : Ty for helping! I was wondering how to do that SO long! :) XD

 


 

C@S

 

 

 

 

Last edited: Saturday, February 25, 2006 at 8:48:26 AM

Saturday, February 25, 2006 at 8:37:49 AM

OKay I did everythin it said on the instructions twice! It works but fer some reason my passwords aren't workin. Just an ex...
I set passwords like tis
dictator-------------turret
minister---health
civillian-----tank
but when I type /adm turret it kicks me out of my server!!

Saturday, February 25, 2006 at 4:03:12 PM

Me to
8(

Saturday, February 25, 2006 at 4:26:36 PM

Help?

Saturday, February 25, 2006 at 4:37:22 PM

@ Repent

Can you have a look at my post on the previous page, any ideas?

 

 

 

 

Saturday, February 25, 2006 at 6:05:05 PM

It is in my adminnames I made sure every word fit my name 2!

Saturday, February 25, 2006 at 9:40:23 PM

The giu window will not appear XO

Sunday, February 26, 2006 at 4:35:36 AM

The GUI doesn't work on Macs.

Sunday, February 26, 2006 at 4:36:42 AM

I dont have a mac

Sunday, March 05, 2006 at 4:13:54 AM

^^ Oww.. Then I have a rare mac... My guiwindow works perfect on my parents mac... :o

@ XXXXX : Are you sure you did use ctrl+s [or something else if you edited]?
If you try to, but it doesn't work, its not so bad... No need to reïnstall. But if ya realy want the gui window I suggest reïnstalling. ;)

 

 

 

 

Monday, March 06, 2006 at 10:27:04 AM

^^WOW!
Finally a Mac that works my Admin Script! Could you give me the computers info (just about what Mac it is + version)?
It's a miracle! The Mac finally understood this simple thing called a GUI! XD
I hope it also happens in other computers o.O


Tuesday, March 07, 2006 at 12:43:55 PM

What dooes it mean when it says:add the names you/your admins use to play/admin your

Server. In the install instructions

 

Last edited: Tuesday, March 07, 2006 at 4:13:54 PM

Tuesday, March 07, 2006 at 4:13:30 PM

Got it

Tuesday, March 07, 2006 at 4:38:30 PM

Page : 1 : 2 : 3 : <4> : 5

insert quote insert url insert email insert image bold italic underline superscript subscript horizontal rule : : Help on using forum codes

Add comment:

HTML is disabled within comments, but ZBB Code is enabled.

Back to the top

Web site designed, maintained and funded by -z- and Dan MacDonald