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

Pages: 1 ... 9 10 11 12 13 [14] 15 16 17 18 19 ... 617
196
Off Topic / Re: Tier List Weekly Megathread | Best Controller
« on: June 29, 2019, 05:44:25 AM »
rated by how well they would fit into your ass


197
Off Topic / Re: ive loving had it with jojo bizarre adventure
« on: June 29, 2019, 04:40:30 AM »
one my favorite parts in jojo is where they go to disneyland and the escaped prison convict, who tore apart his ex girlfriend and the guy she cheated on him literally piece by piece, is mad because mickey mouse is not at disneyland due to licensing issues, just then he sees a tail of a creature flee around a corner and he goes to investigate to discover the stand Bohemian Rhapsody which is a stand that rips the soul of any on lookers into a fictional character of their deepest fantasies this stand summons Spider-Man, Peter Pan, Astro Boy, Snoopy, E.T., Vincet van Gogh, the Big Bad Wolf, and Mickey Mouse, although he is still unseen due to licensing issues, just alluded to, Mother Goat from the fairy tale 'The Wolf and the Seven Young Goats' is continually stabbing into the prison convicts body with a pair of scissors each time striking it releases a baby goat from his body, one of the other main characters named Weather Report forces Vincet Van Gogh to create a fictional character named 'Putback' which puts back every fictional character into their respect stories freeing out heroes 7 chapters later

198
Add-Ons / Re: [Item] Antlers
« on: June 28, 2019, 04:09:49 PM »
does it go in the hatmod archive?
i dont know how hat mod works but this is a standalone item that has gameplay function

199
Add-Ons / [Item] Antlers
« on: June 27, 2019, 11:43:56 PM »
Antlers
Version 1



Run in a direction and aim your antlers at those loving hunters to kill them

Once you pickup/spawn with the antlers you lose the ability to use items and they will equip on your head
Running continually in a direction will ramp up your speed to 180%
Once your speed is ramped up a whitish trail will be at your feet and you are now ready to ram some forgeters

Recommended to use with some stupid minigame mod that forces avatars

Download

Swololol.com
125kb

200
Add-Ons / Re: [Weapon Pack] SWeps v2.0.2 + MORE
« on: June 27, 2019, 12:55:38 AM »
im planning on making some medieval weapon skins if i get unlazy and spear would definitely be one of the weapons

201
Add-Ons / Re: [Weapon Pack] SWeps v2.0.2 + MORE
« on: June 26, 2019, 11:55:33 PM »
lol

202
Add-Ons / Re: [Weapon Pack] SWeps v2.0.2 + MORE
« on: June 26, 2019, 11:52:29 PM »
do you think youre getting a rise out of me by following me around to every post i make and calling me quirky?
it's not even annoying I just can't even begin to understand your pathetic motives

203
Add-Ons / Re: [Weapon Pack] SWeps v2.0.2 + MORE
« on: June 26, 2019, 11:41:33 PM »

204
Add-Ons / Re: [Weapon Pack] SWeps v2.0.2 + MORE
« on: June 26, 2019, 08:34:34 PM »
where is the fire axe
there will be an axe in the medieval melee skin pack

not sure if ill do a modern fire axe though

205
this would actually be a very poor algorithm for censor
demonstrated by the words below which are all a distance of '1' from a word that would be found on a censor list


Code: [Select]
fog
fig
hag
gag
tag
rag
sag
jag
mag
bag
lag
nag
shot
shut
tuck
muck
suck
ruck
buck
cuck
duck
huck
luck
puck
yuck
bigger
digger
nagger
rigger
tigger


this algorithm is more useful when trying to match a string to a specific list ie a user list or a item list brick list etc
further more this algorithm is very computational and is not something you would want to run on every multi word message sent by a user against a censor list

206
Add-Ons / Re: [Weapon Pack] SWeps v2.0.2 + MORE
« on: June 25, 2019, 04:30:44 PM »
sweps melee pack coming soon



if you've played MArena you know how they work
if not, trust me its pretty yummy

207
Modification Help / [Resource] Damerau Levenshtein String Distance
« on: June 25, 2019, 01:44:48 PM »
Code: [Select]
function damerauLevenshteinDistance(%a,%b)
{
%h = strLen(%a)+1;
%w = strLen(%b)+1;

for(%i=0;%i<%h;%i++)
%a[%i] = getSubStr(%a,%m[%i,0] = %i,1);
for(%i=0;%i<%w;%i++)
%b[%i] = getSubStr(%b,%m[0,%i] = %i,1);

for(%y=1;%y<%h;%y++)
{
for(%x=1;%x<%w;%x++)
{
%c = !(%a[%y-1] $= %b[%x-1]);
%i = %m[%y,%x-1]+1;
%d = %m[%y-1,%x]+1;
%s = %m[%y-1,%x-1]+%c;

if(%s < %d && %s < %i)
%l = %s;
else if(%d < %i)
%l = %d;
else
%l = %i;

if(%x > 1 && %y > 1 && %a[%y-1] $= %b[%x-2] && %a[%y-2] $= %b[%x-1] && (%t = %m[%y-2,%x-2]+%c) < %l)
%l = %t;
%m[%y,%x] = %l;
}
}
return %m[%h-1,%w-1];
}

find the distance between two strings as a numerical value
includes insertion, deletion, substitution, and transpositions

respectively each method is shown below, each of these strings are considered a distance of '1' from eachother

damerauLevenshteinDistance("abc","abbc");
damerauLevenshteinDistance("abc","ac");
damerauLevenshteinDistance("abc","axc");
damerauLevenshteinDistance("abc","aabc");

this function clearly becomes slower the longer the strings so make sure to include some sort of limiter and cache results
do not allow a user to enter multiple 255 length strings concatenated together in a serverCmd and then parse them through this function, your server will explode
if you expect this function to be called many times for similar strings consider adding a simple global variable cache array

208
Gallery / Re: motherloving spooks
« on: June 20, 2019, 04:39:51 PM »
god that horse one is hilarious

not really sure whats going on in the first one though

209
Drama / petition to ban celau and edd
« on: June 20, 2019, 04:10:02 AM »
yoshis island advantage mark 4 overclock master edition: 2: the search for the secret featuring q

210
Add-Ons / Re: Image2Brick
« on: June 18, 2019, 01:38:43 PM »
Tried it. It would just constantly be flashing up on your screen because it would have to happen so often.
i dont understand why can't you just get all the pixel data and store it in a global "2d array" and then delete the globals after,
obviously not sure how fast this would be for a huge images but seems reasonable for anything like 500x500 pixels and under

Pages: 1 ... 9 10 11 12 13 [14] 15 16 17 18 19 ... 617