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 - Col. Burton

Pages: 1 2 3 4 5 [6] 7 8 9 10 11 ... 15
76
Drama / Nuka Cola's "Build to Survive"
« on: August 09, 2015, 12:48:41 AM »
Nuka Cola - 143371, and his power hungry admin, insert name here_____(INH_ for short) - 17377, were in control of a build to survive server. The point of the server was to build a base where you could survive endless waves of zombies and not dying. well, this is where I came into play, and survived.

I build my base, which is I guess what you could call a skybase, and I was surviving pretty well. There were no rules posted, so I didn't know I was doing anything wrong. INH_ teleports into my base, and deleted a RL spawn, so I asked, why did he do that, this is his response (Keep in mind he had a RL with him).



This is where I start asking for other rules, not that I ask more than 3 times if there are any other rules.




The "WTF NUKA" is where my base was deleted, apparently I was surviving too well. This upset me, and I was not informed that my base was OP, as it was not stated that building a skybase was against the rules.



Now, INH_ was getting kinda annoying, and he lost my respect by calling me names and being a power-hungry admin. After I was explaining myself, I got banned, by INH_ of course.


I rejoined, and Nuka said "my server is gud." to someone who joined after me, i said, "It really isnt,"...




Apparently my base was "untouchable", that's how to survive a zombie apocalypse, right?


Tronx also agreed with me that it was complete bullstuff.



Quote of the thread:
"Build to survive not build to automatically win"


I'm not entirely sure what the problem is with these people, but I am definitely banning them from my server.

77
Modification Help / Chat bot not working like it should
« on: July 27, 2015, 09:13:36 PM »
I wanted to create a chat bot, and I got most of it down. Here is the raw code for it.
Code: [Select]
$chatBot::name = "ColBot";
 
$chatBot::response["hi"] = "ayy wassup ayy_wassup hola_amigo hola hi,_and_welcome_to_the_server";
$chatBot::response["yo"] = "ayy wassup ayy_wassup hola_amigo hola hi,_and_welcome_to_the_server";
$chatBot::response["ayy"] = "ayy wassup ayy_wassup hola_amigo hola hi,_and_welcome_to_the_server";
$chatBot::response["lol"] = "TOP_KEK! kek rofl lmao lel its_not_funny_stfu";
$chatBot::response["kek"] = "TOP_KEK! kek rofl lmao lel its_not_funny_stfu";
$chatBot::response["lmao"] = "TOP_KEK! kek rofl lmao lel its_not_funny_stfu";
$chatBot::response["lel"] = "TOP_KEK! kek rofl lmao lel its_not_funny_stfu";
$chatBot::response["rofl"] = "TOP_KEK! kek rofl lmao lel its_not_funny_stfu";
$chatBot::response["ur_gey"] = "no_u ok only_for_col_<3 sorry_for_the_inconvenience";
$chatBot::response["ur_gay"] = "no_u ok only_for_col_<3 sorry_for_the_inconvenience";
$chatBot::response["you're_gay"] = "no_u ok only_for_col_<3 sorry_for_the_inconvenience";
$chatBot::response["wtf"] = "whats_your_problem_>.> what lmao_u_mad?";
$chatBot::response["the_forget?"] = "whats_the_problem? what ?";
$chatBot::response["what_the_forget?"] = "whats_the_problem? what ?";
$chatBot::response["the_forget"] = "whats_your_problem_>.> what lmao_u_mad?";
$chatBot::response["what_the_forget"] = "whats_your_problem_>.> what lmao_u_mad?";
 
 
 
$chatBot::timeOut = 5000;
 
 
package chatBot
{
       
        function clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg)
        {
                parent::clientCmdChatMessage(%a,%b,%c,%fmsg,%cp,%name,%cs,%msg);
               
                if(%name !$= $pref::Player::NetName)
                {
                        %msg = stripMlControlChars(%msg);
                       
                        %hasTrigger = chatBot_messageHasTriggerWord(%msg);
                       
                        if(%hasTrigger !$= "0")
                        {
                                %phrase = chatBot_getRandomPhraseFromWord(%hasTrigger);
                                chatBot_say(%phrase);
                        }
                }
        }
};
activatePackage(chatBot);
 
 
function chatBot_getRandomPhraseFromWord(%word)
{
        %phrases = $chatBot::response[%word];
       
        if(%phrases !$= "")
        {
                %count = getWordCount(%phrases);
                %ranPhrase = getWord(%phrases,getRandom(0,%count));
                %ranPhrase = strReplace(%ranPhrase,"_"," ");
               
                return %ranPhrase;
        }
        else
                return false;
}
 
 
function chatBot_messageHasTriggerWord(%string)
{
        %wordCount = getWordCount(%string);
       
        for(%i=0;%i<%wordCount;%i++)
        {
                %word = getWord(%string,%i);
               
                if($chatBot::response[%word] !$= "")
                {
                        return %word;
                }
        }
        return false;
}
 
 
function chatBot_say(%string)
{
        %time = getSimTime();
       
        if(%time - $chatBot::lastTalkTime >= $chatBot::timeOut)
        {
                if($chatBot::lastTalkMessage $= %string)
                {
                        error("Our chatbot will trigger the flood protection, returning false");
                        return false;
                }
                else
                {
                        commandToServer('messageSent',$chatBot::name @ " => " @ %string);
                        $chatBot::lastTalkMessage = %string;
                        $chatBot::lastTalkTime = %time;
                }
               
                return true;
        }
        return false;
}

The only problem with it, is when I trigger it using 'hi' or 'lel' it doesn't say
Quote
ColBot: (return phrase)
it says
Quote
Col. Burton: ColBot => (return phrase)

Again, it works, and I can trigger it in my server. I'm just not entirely sure how to get it to say
Quote
ColBot: (return phrase)

Any help would be appreciated.

78
Help / Server crash on startup
« on: June 22, 2015, 08:42:22 PM »
my server loads fine, until it gets halfway though add-ons, or starts loading music. here is the console log. If you need any more info, let me know.

79
General Discussion / RTB Server Prefs
« on: June 21, 2015, 07:11:38 PM »
I know that RTB came with a thing where you could alter the settings of the server add-ons in the server, I want to do that now, but every time I put System_ReturnToBlockland in my add-ons folder, my game crashes on startup. Does anyone know where to find a separate add-on that allows me to use the RTB server prefs without using RTB?

80
Games / FALLOUT SHELTER || FALLOUT 4 MOBILE APP
« on: June 16, 2015, 06:09:29 PM »
In the light of the debut of Fallout 4, Bethesda released a killer new mobile app called Fallout Shelter after their press conference at E3.


In this game, you take on the role of the overseer of a vault created by Vault-Tec. The objective is to build it up to a fully functional and stable vault, and to repopulate and defend it from outside enemies (IE: Raiders, Radroaches, etc.). You also have the choice of sending one of your dwellers out into the wastes to gather weapons, caps, and outfits for your dwellers.

Completing objectives can give you rewards such as more caps so you can build your vault up, or they can also give you a lunchbox, which has four cards in it. The cards contain weapons, resources, outfits, or caps, which can be redeemed by you to better your vault.

This game implements a new feature where instead of spending your "gems" to make production of resources happen instantly, You have the choice to rush a room, which gives the chance of a disaster happening, or resources are produced instantly.


The wait for android compatibility

DOWNLOAD:

81
General Discussion / Screenshots messing up?
« on: June 06, 2015, 11:37:45 PM »
Idk if you guys noticed this but this happens to me more than often.

it comes out as this:

and not like this:


if anyone could identify why this is happening i would love to know.

83
Off Topic / Music that can't be classified into a genre
« on: June 02, 2015, 01:17:28 PM »
so, I've recently purchased an album by an artist named Torus, and I can't really classify what genre it is (ambient? electronic? wtf?) Maybe you guys could help, and contribute music that also has a hard time being classified into a certain genre.
TORUS - FEEEL

CHROME SPARKS - GODDESS

APHEX TWIN - SYRO


84
I've always thought the world would be better off if the entire global society was run by socialistic robots. One king robot, that is also an AI, controls all of the other robots. The other robots do manual labor like agriculture, and industrial production. There would be no unemployment because the robots do all of the work, and we have more time to get educated, etc.

give me your ideas on the perfect Utopian society.

85
Off Topic / Police parking in fire lanes /debate
« on: April 16, 2015, 08:44:12 PM »
The resource officer at my high school parks in front of the school in the fire lane every day, all day. Is it illegal for him to park there? It is his job to be there all day, so I think obstructing a fire lane is against the law unless it is considered an emergency.


86
Off Topic / I am finally allowed to do adult things
« on: March 18, 2015, 10:11:51 AM »
today is my 18th birthday /yay

happy birthday to me

87
Off Topic / Who is this and why does he see my profile
« on: March 17, 2015, 04:29:12 PM »
Who is this kid and why do they seem so surprised at my profile

I know you can see him, look at him.

88
THE MANHUNT FOR NOOK CONTINUES
Reportedly she is only 10-years-old when she was attacked, and she is with her younger brother.
You can hear her screaming "What did I do?"

link broken sorry
COMMENTARY BY @TjSotomayor
https://www.youtube.com/watch?feature=player_embedded&v=JMHeJWZEyW0
Quote
POSTED ON YOUTUBE
https://youtu.be/NiV2kryyVSE
https://www.youtube.com/watch?v=K-jOywU9QZU

HER YOUTUBE ACCOUNT:
https://www.youtube.com/channel/UCJRwrM_zjYvxlmMLna_r6ag


location of attack: 3500 Brookside Pkwy S Dr Indianapolis, IN 46201
Perpetrator's Alias: "Nook"
Perpetrator's alleged address: 9406 E 42nd Street Indianapolis, IN

CONTACT:
http://crimetips.org/
http://www.wthr.com/category/28218/contacts-advertising-information
http://www.cityoflawrence.org/lawrence/police-administration/
http://www.indy.gov/egov/city/dps/impd/involved/pages/hotline.as

HER PHONE: (317)-564-9488

Her "boo"'s PHONE:
Jawon Jones (765)-669-1978
 
HER KIK:
obey_ogtigger

HER BF's:
yungkaine

HER INSTAGRAM:
10_13_13_doe, NOOK_PAGE

HER ASK.FM:
http://ask.fm/Nook_Page


POLICE TAKING ACTION

Also, let us take a moment of silence for the loss of a great productive member of this community.
me too . why don't people try to defend themselves at all anymore ? loving pussies .

eat my ass/10, fuccboi.

User was banned for this post

89
Off Topic / Need some advice pls
« on: February 26, 2015, 05:12:18 PM »
I'll greentext this for you because it's easier.

>be 17
>be at bus ramp waiting for bus
>see beautiful girl (16) i've been drooling over forever waiting for her bus too
>ask my m8 if i should go tell her she's pretty
>m8 says ya
>contemplate betaness
>walk over and do it
>tap on her shoulder
>"excuse me, but you are really pretty"
>"aww thanks anon"
>"like, you are the prettiest girl i have ever seen"
>"aww thank you"
>her friends start touching my beard
>give thumbs up to her and her friends and say i have to leave with a stuff-eating grin on my face
>realize i almost missed my bus
>never asked her name
>never got her number

I want to be her friend and hopefully more but I just can't figure out what to do next, can I get some help?

90
Off Topic / HE IS THE BONGLORD
« on: February 15, 2015, 06:50:58 PM »
THIS MAN LEGEND DOES CRAZY BONG CHALLENGES, SUPER SMOOTHLY.
CHECK IT OUT
*not for children*

Pages: 1 2 3 4 5 [6] 7 8 9 10 11 ... 15