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 - DYLANzzz

Pages: 1 ... 25 26 27 28 29 [30] 31 32 33 34 35 ... 48
436
Off Topic / Re: A ginger harassed me today.
« on: September 09, 2010, 09:13:25 PM »
Oh god, there was this kid at my lunch, he was about 4 feet tall, EVERYONE hated him (dunno why...)! We tried to get him kicked out, we told teachers we hate this kid, And the kid still sat there, we even threw his lunch! Moral of the story, just be nice Kill the person.
That was probably me back in 6th grade... I was so loving short... But not Im in 11th and 5'4". :D

437
Off Topic / Re: Quaran Burning Day
« on: September 09, 2010, 09:05:05 PM »
The media is bullstuff

438
Off Topic / Re: Wtf is with the Interweb now'a'days.
« on: September 08, 2010, 08:06:22 PM »

439
Off Topic / Re: Dear blank, please blank
« on: September 06, 2010, 08:43:06 PM »
I like it

440
Off Topic / Re: Forum Game: Beat the previous image.
« on: September 06, 2010, 08:42:22 PM »

441
Off Topic / Re: Scripting teacher?
« on: September 06, 2010, 08:29:39 PM »
Get Notepad++
Go to youtube.com
Type in Blockland Scripting Tutorial
???
Profit?

No there seriously are some blockland scripting tutorials there such as these.

442
Off Topic / Re: Im trying out zorblox. a somehow rip off of roblox
« on: September 06, 2010, 08:24:37 PM »
Why would anyone want a floating chatbox in the sky )as the video portrays).

Go into uploads and theres tons of random crap (and some roblo stuff too rofl)

-snip-
omg i dont even

443
Errth is formed by mixing water and some other stuff in a bucket and then sticking it on your walls.

Dude, wheres my car?

444
Off Topic / Re: Google Your Username!
« on: September 06, 2010, 08:18:26 PM »
Lots of people have the last name Coburn (Which mine is not) thats my ingame name.

For DYLANzzz well there isnt much. Google

445
Off Topic / Re: Boston
« on: September 06, 2010, 08:12:41 PM »
Wierd Billboards. On the way out of the city, I saw a billboard concerning a gun show, called Guns USA or something. It said on the bottom "We sell guns, no permit required. Criminals and Terrorists welcome!" There were a few others but I forgot those.

Go to Atlanta. There was a billboard saying vote no guns or something and right under it someone put, Gun show, tommorow only, free gun shooting etc etc.

There were some others I cant remember.

446
Gallery / Re: [BAN] App - Space Hall's
« on: September 06, 2010, 08:08:23 PM »
I doubt this will get you into ban, its just two halls, one colored differently.
I think theit're looking for something more complete

447
Modification Help / Re: Does every client have a number?
« on: September 06, 2010, 03:38:12 PM »
D: This doesn't work
Code: [Select]
%client.textColor = getRandom(000000, FFFFFF);
messageClient(%client,'',"the color is " @ %client.textColor);
This says "the color is 0" every time?

I dont think you can get random hex value that way.
Code: [Select]
function randomHex()
{
   for(%i=0; %i<6;%i++)
   {
      %rand = getRandom(0,15);
      switch(%rand)
      {
         case 10:
         %dig="A";

         case 11:
         %dig="B";

         case 12:
         %dig="C";

         case 13:
         %dig="D";

         case 14:
         %dig="E";

         case 15:
         %dig="F";

         default:
         %dig=%rand;
      }
      %hex=%hex@%dig;
   }
   return(%hex);
}
You can call this fucntion I whipped up. Put it into your code. This would get a random number 0-15 (amount of choices a single hex digit could be) and if its 10-15 turns it into a letter.
It then combines it all into a single hex variable. Then it returns it.

448
Modification Help / Re: Does every client have a number?
« on: September 06, 2010, 12:35:46 PM »
Im not sure. You would probably have to loop through it to get a certain BL_ID or something.

Code: [Select]
for(&i=0; &i<clientGroup.getCount(); %i++)
{
   if(clientGroup.getObject(%i),bl_id==100)
   {
       echo("Found him");
   }
}
I've already made this mod, it's called a server id, just use %client.bl_id, since that will almost never be changed...
And I think he wants to have a numerical value for everyone (like 0 1 2 3 and not 3605, 11240, 18043, etc etc)

449
Modification Help / Re: Does every client have a number?
« on: September 06, 2010, 12:11:52 PM »
Yes. I believe Chrono is speaking of clientGroup?

You can get an obkect from the group using clientGroup.getObject(#);
You can get how many clients there are with clientGroup.getCount();
So if clientGroup.getCount() is 5 then you could get the client objects using clientGroup.getObject(0), clientGroup.getObject(1) ... clientGroup.getObject(4)
If you want to get all of them, then you can use a for loop

450
Modification Help / Re: Does every client have a number?
« on: September 06, 2010, 11:59:23 AM »
Or you could give each object a spot in an array and their index is their number.

Or you could give them a variable attached to thier object when they connect

Pages: 1 ... 25 26 27 28 29 [30] 31 32 33 34 35 ... 48