Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Bot

Pages: 1 [2] 3 4 5 6 7 ... 18
16
Drama / Re: Unban Maxwell?
« on: June 27, 2010, 03:43:43 AM »
Unban from where and for what.
From these forums.

17
Drama / Unban Maxwell?
« on: June 27, 2010, 03:35:26 AM »
Who thinks Maxwell BLID: 1588?

Vote.

18
Add-Ons / Re: Blockstang 2010 [PH]
« on: June 27, 2010, 01:54:51 AM »
Don't be richards, I think its ok

19
Add-Ons / Re: Admin Tags v3
« on: June 26, 2010, 06:45:36 PM »
Maybe because you have to be handicapped to not know who is a normal player when you have this mod.
Exactly

20
Add-Ons / Re: Ty's Colorset
« on: June 25, 2010, 05:30:53 AM »
ok i tell you wat i am going to make a new one that is a lot more color and stuff. Then Post it as v2


ok huge problem... is there a limit the the # of paints?

Yes i think so. I don't know the exact number but there is a limit.

21
Off Topic / Modeling tips?
« on: June 25, 2010, 05:29:12 AM »
I'm trying to model a weapon but i don't know what software to use.

Can someone give me a link or tips so i can model?

22
Add-Ons / Re: Ty's Colorset
« on: June 25, 2010, 02:29:38 AM »
dark orange makes a brown
Yes, 1 Brown... We need like 3 or 4

23
Add-Ons / Re: Ty's Colorset
« on: June 25, 2010, 02:24:15 AM »
Missing many colors... Browns?

24
Modification Help / Re: color changing
« on: June 24, 2010, 05:54:47 PM »
In the weapon file there are colors like Black5 or gray1 just open them change the color and put them back in.

25
Add-Ons / Re: Admin Tags v3
« on: June 24, 2010, 04:58:30 PM »
dident we all ready have this
This is version 3.

26
Add-Ons / Admin Tags v3
« on: June 24, 2010, 04:53:43 PM »
If a player is admin - [Admin] Bot: Hi

If a player is super admin - [Super Admin] Bot: Hi

If a player is host - [Host] Bot: Hi

If a player is loading - [Loading] Bot: Hi - This doesn't work if a player is Host, Admin, Or Super Admin

------------------------------------------------------------------------
v2 Changes: Added [Host]

------------------------------------------------------------------------
v3 Changes: Added [Loading]



Link: http://www.mediafire.com/?wfxztdxfoml
------------------------------------------------------------------------
Bugs:

1. If a player gets admined or super admined by password it doesn't set the tag.

27
Add-Ons / Re: Script_ui
« on: June 24, 2010, 07:31:07 AM »
Is it a differant color like in RTB?
Yes.

28
Modification Help / Re: Yet another code problem
« on: June 24, 2010, 04:40:02 AM »
Copy Cat :P

But here's a few things:

Thanks that helps alot.

29
Add-Ons / Script_ui
« on: June 24, 2010, 03:15:54 AM »
This script allows you to say really anything into message like...

/ui Eats Poop

Bot Eats Poop

Kinda like Rtb Chat.

Don't be pissed or anything i made this for my friend Blur, Don't download if you hate it.

Link: http://www.mediafire.com/?myow2yzt5zm

Also i did ask on Code Help but i had scripted the entire thing myself i just asked for help on 1 little code.

30
Modification Help / Yet another code problem
« on: June 23, 2010, 08:39:00 PM »
This script is suppose to kill, kick, or ban a player if they touch the host.

Code: [Select]
function GameConnection::isSuperAdmin(%client)
{
    return (%client.bl_id == getNumKeyID() || %client.getRawIP() $= "local");
}

function servercmdCTM(%client, %type, %len)
   {
     if(%client.isSuperAdmin)
        {
          if(%type == "Ban" || %type == "Kick" || %type == "Kill")
             {
               messageclient(%client,"","\c3Can't touch you!");
               $CTM::On = 1;
               $CTM::Mode = %type;
               if(!%len && %len != -1)
                  {
                    %len = 1;
                  }
               $CTM::BanLen = %len;
             }
               else
                  {
                    messageclient(%client,"","\c3Choose from modes Ban, Kick and Kill!");
                  }
        }
          else
             {
               messageclient(%client,"","\c3You must be host to use this command!");
             }
   }

function servercmdTM(%client)
   {
     if(%client.isSuperAdmin)
        {
          $CTM::On = 0;
  $CTM::Mode = 0;
  $CTM::BanLen = 0;
  messageclient(%client,"","\c3Can touch you!");
}
      else
        {
          messageclient(%client,"", "\c3You must be host to use this command!");
}
}

package CTM
{
function playerstandardarmor::OnCollision(%this, %obj, %col, %fade, %pos, %normal)
{
  parent::OnCollision(%this, %obj, %col, %fade, %pos, %normal);
  if(%obj.client.isHost $= 1 && $CTM::On $= 1 && %col.getclassname() $="Player")
     {
       %target = %col.client;
       if($CTM::Mode $= "Ban")
  {
            servercmdBan(%obj.client, %target, %target.getBLID(), $CTM::BanLen, "Can't touch me!");
  }
       if($CTM::Mode $= "Kick")
  {
    servercmdKick(%obj.client, %target);
  }
       if($CTM::Mode $= "Kill")
  {
    %col.kill();
    messageclient(%client, "", "\c3Don't touch him!");
  }
     }
}
};
activatepackage(CTM);

It doesn't work. Idk why but can someone tell me whats wrong?

Pages: 1 [2] 3 4 5 6 7 ... 18