Notings of Attention™
Acmlmboard 2 Released
Github/GIT | @acmlmboard
Chatting Places
Discord

Affiliates
Super Mario Bros. X | Kuribo64
Views: 8,952,593
Main | FAQ | IRC chat | Memberlist | Active users | Latest posts | Stats | Ranks | Online users | Search
03-28-24 08:46 PM
Guest: Register | Login

0 users currently in Display Case | 15 bots

Main - Display Case - March KCS Rankings (3/31 - This is the last of the rhyming blast!)
Next newer thread | Next older thread

Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

Kawa
Posted on 03-03-12 02:21 PM, in Link | ID: 8277
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 868/2423
EXP: 7974105
Next: 78705

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
It was supposed to be ME on the top spot, goddammit!


Epele
Posted on 03-03-12 02:25 PM, in Link | ID: 8282
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1001/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
Posted by Kawa
It was supposed to be ME on the top spot, goddammit!
I seem to have stolen it. Master thief much?


The world could always use more heroes!

Marzen64
Posted on 03-03-12 05:05 PM, in Link | ID: 8304
Normal User
T̨̞͎͓͉̮͓̠o͚͎o ̴̘̼̳͔̥̺͓m̤̤a̸̳̫̜̠̬͉̗ny͕̳ ̥͈̘̞͟c͚̦̳̘̠̟ͅo҉̗͎̮̣͉o̷͍̤̥̞͔͎̹k҉͙̲̩͍̮̮s͈̼͎
Level: 82


Posts: 368/1774
EXP: 4995082
Next: 214145

Since: 01-02-12
From: Internet

Last post: 3376 days
Last view: 2663 days


Posted by Gywall
Posted by Marzen64
Posted by Marzen64
This is the only time I will ever have more/as many points as Kawa. Or this close to the top. I don't mind really, it's something.



This was apparently a lie. :D
Maybe you'll beat Kawa yet? :o



Nope. Kawa's already worked his ass off today posting. 23 posts? YEAH I'MMA BEAT THAT.

He's gonna jump ahead in front of me unless I equally spree but I won't cause I like to do things other than talk to people.



Epele
Posted on 03-03-12 06:19 PM, in Link | ID: 8322
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1003/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
Kawa was plotting in IRC with Trelior. I smell dirty tactics.


The world could always use more heroes!

Kawa
Posted on 03-03-12 06:19 PM, in Link | ID: 8324
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 890/2423
EXP: 7974105
Next: 78705

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
All my tactics are dirty, Drywall. You should know this already.


Epele
Posted on 03-03-12 06:24 PM, in Link | ID: 8329
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1008/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
Posted by Kawa
All my tactics are dirty, Drywall. You should know this already.
Dirty, like your mind. Spend those keystrokes developing Noxico, would ya?


The world could always use more heroes!

Kawa
Posted on 03-03-12 06:25 PM, in Link | ID: 8331
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 892/2423
EXP: 7974105
Next: 78705

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
Would be even better if those interested in it knew C# themselves.


Epele
Posted on 03-03-12 06:33 PM, in Link | ID: 8337
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1010/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
Posted by Kawa
Would be even better if those interested in it knew C# themselves.
Indeed. I'm no use, I don't know that language.

I'll stick to my more "script-like" languages.


The world could always use more heroes!

Trelior
Posted on 03-03-12 06:34 PM, in Link | ID: 8338
Normal User

Level: 127


Posts: 510/4986
EXP: 23536758
Next: 189808

Since: 01-02-12

Last post: 1233 days
Last view: 1233 days
I wish I could program more than "Derp! Hello World!" but unfortunately, that's all my programming skills have reduced themselves to. :/

Kawa
Posted on 03-03-12 06:37 PM, in (rev. 2 of 03-03-12 06:38 PM by Kawa) Link | ID: 8339
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 895/2423
EXP: 7974105
Next: 78705

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
var keywords = scriptLine.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);

switch (keywords[0])
{
case "jump":
var labelName = ": " + keywords[1];
for (int newPointer = 0; newPointer < this.Script.Length; newPointer++)
{
if (this.Script[newPointer] == labelName)
{
this.ScriptPointer = newPointer;
break;
}
}
break;
MISSION: explain what this seems to do.

Edit: switched to PRE.


Epele
Posted on 03-03-12 06:37 PM, in Link | ID: 8340
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1011/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
Posted by Trelior
I wish I could program more than "Derp! Hello World!" but unfortunately, that's all my programming skills have reduced themselves to. :/
Such a sad day.. I can do a little more than that.. in most languages..


The world could always use more heroes!

Trelior
Posted on 03-03-12 06:43 PM, in Link | ID: 8342
Normal User

Level: 127


Posts: 511/4986
EXP: 23536758
Next: 189808

Since: 01-02-12

Last post: 1233 days
Last view: 1233 days
Posted by Kawa
var keywords = scriptLine.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);

switch (keywords[0])
{
case "jump":
var labelName = ": " + keywords[1];
for (int newPointer = 0; newPointer < this.Script.Length; newPointer++)
{
if (this.Script[newPointer] == labelName)
{
this.ScriptPointer = newPointer;
break;
}
}
break;
MISSION: explain what this seems to do.

Edit: switched to PRE.
First off... I'm not sure what language this is in, but I'll try anyway...

Looks like a parse to remove spaces from an input, then make a pointer out of the result for a search... I have a feeling I'm dead wrong, though.

GreyMaria
Posted on 03-03-12 06:50 PM, in (rev. 2 of 03-03-12 06:52 PM by GreyMaria) Link | ID: 8343
Normal User
~</3
Outta here.
Level: 99


Posts: 689/2758
EXP: 9682351
Next: 317649

Since: 01-03-12

Last post: 3912 days
Last view: 3701 days
Posted by Kawa
var keywords = scriptLine.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);

switch (keywords[0])
{
case "jump":
var labelName = ": " + keywords[1];
for (int newPointer = 0; newPointer < this.Script.Length; newPointer++)
{
if (this.Script[newPointer] == labelName)
{
this.ScriptPointer = newPointer;
break;
}
}
break;
MISSION: explain what this seems to do.

Edit: switched to PRE.


This code checks the start of a script line for a "jump" command, then searches the entire Script object for its associated label and adds that line as a pointer destination.

For example, the line
jump labelDerp
would find its destination at the FIRST matching line
: labelDerp

...and yeah.

Kawa
Posted on 03-03-12 06:53 PM, in Link | ID: 8344
Retired Staff

Not okay
Prophet of Celestia
Level: 93


Posts: 896/2423
EXP: 7974105
Next: 78705

Since: 01-01-12
From: The Netherlands

Last post: 2000 days
Last view: 315 days
It's C#. This should've been obvious from the preceding posts.

It takes the scriptLine variable (which seems to be a string) and splits it up, using spaces as the cutoff points, and removing all the empty bits (that is, "a b c" will become {a, b, c} and not {a, , b, c}). The resulting set is put in keywords. It then takes the first item in keywords and determines what to do depending on that. If it's "jump", it prepares a thing to search for by taking the second keyword and putting ": " in front of it. It then loops through what seems to be a list of strings, starting at the beginning until the end, in single steps, to find the first line that matches the thing we just prepared (labelName). Once found, a scriptPointer property is reset to the point we found, and we break the loop. The final break is to prevent the "jump" case from falling through to the next one.

What we can infer from this is that the script is stored as a set of lines (be it Array or List is irrelevant here), and there's a scriptPointer that indicates where execution is at. This is not a pointer in the C sense, because those are frowned upon in .Net -- it's just an integer indexing into the script array.


GreyMaria
Posted on 03-03-12 06:56 PM, in Link | ID: 8345
Normal User
~</3
Outta here.
Level: 99


Posts: 690/2758
EXP: 9682351
Next: 317649

Since: 01-03-12

Last post: 3912 days
Last view: 3701 days
Well, yes, but you didn't have to say that because anyone who would have tried to take on that should have already known that.

Lili~ ♥
Posted on 03-03-12 10:02 PM, in Link | ID: 8397
Normal User
Queen Lesbian of Kafuka
Level: 159


Posts: 589/8412
EXP: 51555704
Next: 255053

Since: 01-06-12

Last post: 2725 days
Last view: 1248 days

Epele
Posted on 03-03-12 11:03 PM, in Link | ID: 8398
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1031/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
Ker-yoinked.

Maybe I can do a hat trick? :o


The world could always use more heroes!

Lili~ ♥
Posted on 03-03-12 11:04 PM, in Link | ID: 8399
Normal User
Queen Lesbian of Kafuka
Level: 159


Posts: 590/8412
EXP: 51555704
Next: 255053

Since: 01-06-12

Last post: 2725 days
Last view: 1248 days
You gotta give me credit for helping you out there, though. :P


Epele
Posted on 03-03-12 11:05 PM, in Link | ID: 8400
Site Administrator
The Sorceress.
Boing~

Level: 235


Posts: 1032/20774
EXP: 200185000
Next: 1740892

Since: 01-01-12
From: UK

Last post: 814 days
Last view: 8 hours
You gave me inspiration, which is enough to seize glory.


The world could always use more heroes!

Marzen64
Posted on 03-04-12 01:26 AM, in Link | ID: 8413
Normal User
T̨̞͎͓͉̮͓̠o͚͎o ̴̘̼̳͔̥̺͓m̤̤a̸̳̫̜̠̬͉̗ny͕̳ ̥͈̘̞͟c͚̦̳̘̠̟ͅo҉̗͎̮̣͉o̷͍̤̥̞͔͎̹k҉͙̲̩͍̮̮s͈̼͎
Level: 82


Posts: 372/1774
EXP: 4995082
Next: 214145

Since: 01-02-12
From: Internet

Last post: 3376 days
Last view: 2663 days


Posted by Gywall
Ker-yoinked.

Maybe I can do a hat trick? :o


*hands Gywall the fedora he is currently wearing* Here ya go. Pull a rabbit outta that bitch.


Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21


Next newer thread | Next older thread
Main - Display Case - March KCS Rankings (3/31 - This is the last of the rhyming blast!)


Acmlmboard v2.5.5 (10/04/2020)
© 2005-2024 Acmlm, Emuz, et al.

Page rendered in 0.107 seconds. (897KB of memory used)
MySQL - queries: 261, rows: 734/766, time: 0.077 seconds.