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.


Topics - Bot

Pages: [1] 2 3
1
Suggestions & Requests / Clan Tag Score?
« on: December 27, 2010, 06:02:50 AM »
Can someone make a script that shows your score as your Clan Tag Prefix Such as:

Player Killed ThisGuy

(1) Player: Hah i totally Owned you.

Also after a certain amount you get another clan prefix with a title

(Noob) (100) Player: Hey Im Not A Noob D:?

2
Off Topic / The Hardest Blockland Question.
« on: December 25, 2010, 09:47:50 PM »
What would happen if Badspot died?

I think Blockland would stay the same until they found someone else to run the game.

3
Drama / Im Back.
« on: December 13, 2010, 05:06:15 PM »
Hey guys i'm back. Good? Bad? I personally don't care, just wanted to let you know. Also my name was stolen so.... my current name is Ham.

4
Add-Ons / Smilies Mod
« on: July 06, 2010, 01:04:09 AM »
Smilies Mod...

Allows you to say commands like :smile: for smilies.

EXAMPLE: If you say :smile: it would come out :).

NOTE: To activate this script you must press ~ and put in the following codes.

To turn the mod ON: activatepackage(smile);
To turn the mod OFF: deactivatepackage(smile);

Also here is the list of smiley commands.

[Command] - [You say]
--------------------------------------------------------------------------
:smile: - :)
:mad: - >:C
:ooh: - :o
:happy: - :D
:sad: - :c
:cry: - :'(
:wink: - ;)
:confused: - :S
:shocked: - :O
:jk: - :P
:blah: - :U
:weird: - O_o
:wtf: - O_O
:bored: - -_-
:small: - ._.
:jimmy: - :1)
:shoopdawoop: - Ima Firing Mah Lazar! >:O===================
:badspot: - D:< smurf. You. And. Die.
:evil: - >:)
:hipno: - @_@
:hehe: - ^_^
:awkward: - >_>
:grin: - :]
:neutral: - :|
:eh: - :/
:sad2: - :[
:cat: - :3
:fail: - D:
--------------------------------------------------------------------------
I may add some stuff later in v2 like new commands. But for right now i'm resting.

Helpers: Alpinu

Download: http://www.mediafire.com/?kwymmqzgmwy

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

Vote.

6
Off Topic / Modeling tips?
« on: June 25, 2010, 04: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?

7
Add-Ons / Admin Tags v3
« on: June 24, 2010, 03: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.

8
Add-Ons / Script_ui
« on: June 24, 2010, 02: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.

9
Modification Help / Yet another code problem
« on: June 23, 2010, 07: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?

10
Off Topic / Is Badspot Mean or Nice?
« on: June 23, 2010, 05:58:58 AM »
Why does he always get mad at every little thing?

Do you think he's nice? or is he a meanie?

11
Modification Help / Help with a code?
« on: June 22, 2010, 07:33:09 PM »
Code: [Select]
function servercmdui(%client, %text)
{
messageAll('', "<color:FFFFFF>"@ %client.getPlayerName() @ %text);
}

I am trying to make a message all script that is like

/ui Is cool.

But instead it comes out:

BotIs

Is there a screw up in the code somewhere?

12
Clan Discussion / [iC]
« on: June 17, 2010, 10:39:14 PM »
[iC]
________________

Clan Created by: iBot - BLID: 12027

Blacklist:
_____________
LostBoy - BLID: 10894
Pk - BLID: 9475

Builders:
_____________
Legacy
Bot
iBot

Eventers:
_____________
Legacy
Bot
iBot

Modelers:
_____________
Legacy
iBot

Scripters:
_____________
Bot
iBot

Admins:
_____________
Bot
iBot


Also don't flame its not your clan. If you don't want to join that's fine just don't whine about it.

If you have any questions post here.

If you want to join ask iBot on Blockland.

You may also visit his website: http://ibotsclan.smfforfree.com/index.php

13
Off Topic / Who makes the best add-ons?
« on: June 14, 2010, 08:08:11 PM »
Who do you think makes the best add-ons?

Votes so far:
--------------------------------------------------------
Badspot - 2

Kyle - 1

Space Guy - 3

Tezuni - 1

Tophius - 1

Sylvester Stallone - 1

megascience - 1

nobody - 1

Kaje - 1

Pandan - 1

Ephialtes - 1

14
Forum Games / Bot's Build Competition
« on: June 04, 2010, 09:31:29 PM »
Winner will get a BL_ID.

Winners will be announced in June 9th 2010.

15
Suggestions & Requests / Boxhead The game Add-Ons?
« on: May 26, 2010, 06:23:31 PM »
Could you make some add-ons for this game?

http://www.crazymonkeygames.com/Boxhead-2Play-Rooms.html
----------------------------------------------------------------------------------
Prints:

Bind

Bert

Bambo

Bon

Zombie

Zombie Devil
------------------------------------------
Weapons:

Gun - Made
Uzi - Made
Shotgun - Made
Barrels - ?
Grenades - Made
Fake Walls - ?
Claymore - Made
Rocket - Made
Charge Pack - Made
Rail Gun - Made

 Main things that need to be made are the Barrels and Fake Walls.
------------------------------------------
AIs:

AI_BoxHead (Red Guy)
AI_BoxHeadZ (Regular Zombie)

Pages: [1] 2 3