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

Pages: [1]
1
Off Topic / Last Minute Costume Ideas
« on: October 29, 2015, 04:19:20 PM »
I wasnt planning on tricker-or-treating this year, but plans change. I need last minute ideas for something cheap and easy to prepare.

2
General Discussion / What Happened to Grapple Knife?
« on: October 02, 2015, 11:05:22 PM »
Essentially the title. I apologize if this should be in OT I was on the fence about it.

3
Clan Discussion / Blak ass Ghetto Gang
« on: October 01, 2015, 03:15:03 PM »
Hey fam, this gang fo all you getto ass bitches. Only black ghetto fam allowed, bring yo kids, hide yo wife.

membuhs!
sheeeeeeeiitlord
Spece12fidyfi
of cose meh selfie
tnatsissuh
becareual A.K.A.    Deeptroat
PrickPearHeadAss A.K.A.     Mr. P
South Black Gang (SBG)
Epicbrute A.K.A    t3h N1GgA oF d00m!!!1!!1! (added 1's for emphasis)
Maybe, Fad if he kan prove his nigletness
Sparky_87 have been denied cayse he ais tryin tooooooo dam hard

Tags
BLaK   A$s

if you a true brotherh you gotta prove your dedimucation to da group wif you tags uh' honour

4
General Discussion / Blockland on Cheap Chromebook! (Proof)
« on: August 01, 2015, 07:26:19 PM »
I received my newest household computer addition today; my Acer c720 model I won off and eBay auction for $71. I did the norm that people do on Chromebooks, but I took it one step further. Along with installing Linux for a more standard set of features, I installed Wine with the intent to run Blockland... And my friends on this low quality laptop I can run Blockland just as well as my desktop at 60FPS. The 2 downsides as to be expected, are that your battery get wrecked and it is the only thing I can do to make this laptop begin to heatup. The battery issue isn't really an issue, and neither is the heat cause the highest I have gotten it to go is still under 35C.

Specs: 2 Gigs of ram, Intel celeron 2955U clocked @ 1.4 Ghz, 16 Gig SSD, and 1366 x 768 Res screen.

Video proof: https://www.youtube.com/watch?v=Fs7Q9oAV5Kk

5
Modification Help / Avatar Pref Change Loop
« on: August 01, 2015, 08:47:47 AM »
What is the best way to make a function that sets all prefs to 1 then on a one second schedule sets it all to 0? I will now ashamedly post my relavent piece of clearly nonfunctional code.
Code: [Select]
function FunkyPlayerLoop()
{
$R=1;
$G=0;
        //Ikoa
      $pref::Avatar::RLeg=$R SPC $G SPC;
      $pref::Avatar::Accent=$R SPC $G SPC;
      $pref::Avatar::Hip=$R SPC $G SPC;
      $pref::Avatar::LHand=$R SPC $G SPC;
      $pref::Avatar::LArm=$R SPC $G SPC;
      $pref::Avatar::Rarm=$R SPC $G SPC;
        clientcmdupdateprefs();
        $FunkyPlayerCount++;
        $FunkyPlayer=schedule(1000,0,FunkyPlayerLoop);
}
I decided to re-purpose the rainbow player mod (I hope it is possible to do so) and I'm enjoying this (I hope) basic project

6
Modification Help / Avatar Prefs Loop
« on: August 01, 2015, 06:59:30 AM »
What is the best way to make a function that sets all prefs to 1 then on a one second schedule sets it all to 0? I will now ashamedly post my relavent piece of clearly nonfunctional code.
Code: [Select]
function FunkyPlayerLoop()
{
$R=1;
$G=0;
        //Ikoa
      $pref::Avatar::RLeg=$R SPC $G SPC;
      $pref::Avatar::Accent=$R SPC $G SPC;
      $pref::Avatar::Hip=$R SPC $G SPC;
      $pref::Avatar::LHand=$R SPC $G SPC;
      $pref::Avatar::LArm=$R SPC $G SPC;
      $pref::Avatar::Rarm=$R SPC $G SPC;
        clientcmdupdateprefs();
        $FunkyPlayerCount++;
        $FunkyPlayer=schedule(1000,0,FunkyPlayerLoop);
}
I decided to re-purpose the rainbow player mod (I hope it is possible to do so) and I'm enjoying this (I hope) basic project

7
Regularly Hosted Mafia Madness!

Hours
Normal hours should be 7 days a week from 11AM to 11PM

Description
I was unsatisfied with the lack of regular hosting with this gamemode and Otto-san's newest version is unfortunately not up during the day! This is just your normal ordinary "Mafia Madness" server!

Management
Currently Accepting!
We are excruciatingly understaffed right now, I am looking for 2-4 other SA's 4 Admins and I might add Moderators later if this is insufficient!
Necessary information includes: Name in Game, BL_ID, and References! Admin Applications Add-on is also implemented!

Ikoa ~ Host
20395 Aquarus ~ Admin


Credits!
Full credits to Otto-san and []----[] for the mod!


8
Modification Help / Understanding Rainbow Player
« on: July 24, 2015, 10:47:47 PM »
So while trying to re-invent my player's look I started to experiment around with my rainbow player mod. Can someone break this down into any semblance of a recognizable syntax?

Code: [Select]
{
        if($RainbowPlayerCount > 63) $RainbowPlayerCount=0;
        //Grejer
        $R=0+0*mSin($RainbowPlayerCount*3.14/16.0);
        $G=0.75+0.25*mSin($RainbowPlayerCount*3.14/16.0+21.0);
        $B=0.75+0.25*mSin($RainbowPlayerCount*3.14/16.0+42.0);
        $pref::Avatar::PackColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::PackColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::HatColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::LHandColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::RHandColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::HeadskinColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::TorsoColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::LArmColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::HipColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::RArmColor=$R SPC $G SPC $B SPC "1";
        clientcmdupdateprefs();
        $RainbowPlayerCount++;
        $RainbowPlayer=schedule(1000,0,RainbowPlayerLoop);
}

9
Modification Help / Changing RainbowPlayer Values
« on: July 24, 2015, 03:13:00 PM »
So while trying to re-invent my player's look I started to experiment around with my rainbow player mod. Can someone break this down into any semblance of a recognizable syntax?

Code: [Select]
{
        if($RainbowPlayerCount > 63) $RainbowPlayerCount=0;
        //Grejer
        $R=0+0*mSin($RainbowPlayerCount*3.14/16.0);
        $G=0.75+0.25*mSin($RainbowPlayerCount*3.14/16.0+21.0);
        $B=0.75+0.25*mSin($RainbowPlayerCount*3.14/16.0+42.0);
        $pref::Avatar::PackColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::PackColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::HatColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::LHandColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::RHandColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::HeadskinColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::TorsoColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::LArmColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::HipColor=$R SPC $G SPC $B SPC "1";
      $pref::Avatar::RArmColor=$R SPC $G SPC $B SPC "1";
        clientcmdupdateprefs();
        $RainbowPlayerCount++;
        $RainbowPlayer=schedule(1000,0,RainbowPlayerLoop);
}

Pages: [1]