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

Pages: [1]
1
Forum Games / The 50 Word Story Competition
« on: June 08, 2016, 02:58:07 AM »
beep boop
to compete in this game, you must post the best 50 word story. no longer, no less.
Winner will receive 10$ via steam gift card or PayPal (preferably gift card)
rules:
  • only 1 story may be allowed, any revisions and edits after posting will lead in your disqualification.
  • i will only accept entries posted on this topic.
  • there are no limits on what you can write about, but please, don't make it loving disgusting.
GLHF

2
Modification Help / Why doesn't Blockland have foreach?
« on: May 21, 2016, 08:12:22 PM »
/title, it seems extremely useful to have integrated into the modded engine that's for blockland, instead of doing some hacky stuff like
Code: [Select]
for(%i=0;%i<ClientGroup.getCount();%i++){stuff here} we could just do
Code: [Select]
foreach(%client in ClientGroup){stuff here}thoughts?

(yes i did take that example from the torquescript wiki)

3
Off Topic / Utah Lawmaker plans research blocking filters
« on: May 18, 2016, 04:28:57 AM »
Fox 13 News Article

This stuff is so stupid, all it's really going to do is encourage more children to look at research. Basically, the Streisand effect.
Somebody, please save me from this Mormon-infestated stuffhole we call Utah.

4
Off Topic / professor steelmeat teach us about prions
« on: March 07, 2016, 08:13:47 AM »
http://youtu.be/qnpMm79p6oQ
bam get edumacated

5
Clan Discussion / The Sacred Order of the Anti-Harvest
« on: February 10, 2016, 01:09:44 PM »
[insert stuff image here]

Do you think you have what it takes to join the sacred order of the Anti-Harvest?

Bother applying, if we don't think you are ready to join the Anti-Harvest, we will invite you.

Anti-Harvest members are not entitled to special access and privilege. Your builds must not accommodate Harvest members.

Members are public.

Only Men and Women may join the Anti-Harvest.

The Un-Harvested:


  • MoltenKitten
    Blockland ID:     51255/38643
  • Col. Burton
    Blockland ID:     6911
  • Jubel
    Blockland ID:     3656
  • sir dooble
    Blockland ID:     7482
  • Galeon
    Blockland ID:    192704
  • Blue Screen
    Blockland ID:    43975
  • CRITAWAKETS
    Blockland ID:    173449
  • Drydess
    Blockland ID:    31596
  • Dreams_Of_Cheese
    Blockland ID:    29865/35427
  • Blockchip
    Blockland ID:    30497
  • TableSalt
    Blockland ID:    88009
  • shamester
    Blockland ID:    37651
  • Zharthon
    Blockland ID:    73988
  • Pastrey Crust
    Blockland ID:    27690/49212
  • TheAviationFanatic
    Blockland ID:    195177
  • Space1255
    Blockland ID:    32645/93111
  • Regirock
    Blockland ID:    36734
  • Darryl McKoy
    Blockland ID:    13610/52275
  • DrHitius
    Blockland ID:    48525
  • Cacti
    Blockland ID:    199511
  • Aidan10
    Blockland ID:    43061
  • Clownfish
    Blockland ID:    29830
  • Derp590
    Blockland ID:    31478
  • log
    Blockland ID:    48829


The Un-Harvested Clans:
  • Team[Qi]

Blacklist:
  • Lord Tony


Members:
  • Me.
  • DataProxy
  • Swolololololololololololololololololololololololol
  • Pah1023



6
Forum Games / COME UP WITH A SLOGAN FOR A PRODUCT
« on: December 12, 2015, 09:56:56 PM »
AAAAAAAAA
LET'S DO THIS stuff BLF
NOTE: ALL ENTRIES MUST BE IN CAPS
don't bring drama in this

7
Help / BlocklandLauncher staying as a background process after crash
« on: October 24, 2015, 12:57:04 PM »
BlocklandLauncher is refusing to become a non-background process even after reinstall.
Attached is the recent launcher log and the recent console log.
Here is Task Manager: http://puu.sh/kW09l/98cc5a7af3.png

8
Off Topic / TacoTheSkid's pastebins got removed..?
« on: October 16, 2015, 01:25:40 PM »

is this
could it be

9
Add-Ons / Metario's RPJailing
« on: May 10, 2015, 05:36:07 PM »
Made a RPJailing Addon
Commands are so:
/jail (player) (crime) [ADMIN ONLY/MODERATOR ONLY]
/unjail (player)
/setjailposition (crime)
Only 4 crimes are in the script because this is a simple script, and my first attempt at making a addon.
1: Cannabis (aka drugs, or some stuff)
2: Assault (self explanatory)
3: Weaponary (illegal weapons)
4. Driving (wreckless driving)
NOTE: You must set a jail position before jailing players for all 4 crimes!
DOWNLOAD: VERSION 3.0
Perfect for (certain) RPs.
\\\
Future Updates:
Timed unjail time
More crimes/adjustable crimes to arrest/jail for
Make into a weapon
etc.

CHANGELOG
V.1: Addon Released
V.2: Added Moderator to all commands
V.3: Changing names of stuff to different things for the sake of convienience

10
Modification Help / A random syntax error appeared!
« on: May 09, 2015, 11:57:18 AM »
So, I'm coding a sort of RP Jailing thing (don't hate me) and I get syntax errors that are extremely weird, it'd be nice if the people of Blockland took a look.
Quote
function serverCmdJail(%client,%target,%crime)
{
        if(%client.isAdmin || %client.isModerator)
        {
                %pl = findclientbyname(%target);
                if(%crime $= "Cannabis")
                {
                    %pl.player.setTransform($CannabisLocation);
                    %pl.isJailed = "1";
                }
                else if(%crime $= "Assault")
                {
                      %pl.player.setTransform($AssaultLoc);
                      %pl.isJailed = "1";
                }
                else if(%crime $= "Weaponary")
                {
                   %pl.player.setTransform($HeavyWeaponsLocation);
                   %pl.isJailed = "1";
                }
                else if(%crime $= "Driving")
                {
                    %pl.player.setTransform($VroomVroomJail);
                    %pl.isJailed = "1";
                }
        }
}
 
function serverCmdForceUnjail(%client,%target)
{
if(%client.isAdmin)
{
                %pl = findclientbyname(%target); 
                %pl.isJailed = 0;
                %pl.player.instantRespawn();
                %pl.chatMessage('MsgAdminForce',"\c2You have been unjailed by" SPC %client.name);
                }
}
function freePerson(%client)
{
                %client.isJailed = 0;
                %client.player.instantRespawn();
                %client.chatMessage("\c2You have been unjailed automatically.");
                                       
}
 
function serverCmdSetJailPosition(%client,%category)
  {
      %pos = %client.player.getPosition();
if(%client.isAdmin)
{
         if(%category $= "Cannabis")
         {
          $CannabisLocation = %pos;
         }
          else if(%category $= "Assault")
          {
          $AssaultLoc = %pos;
          }
           else if(%category $= "Weaponary")
          {
          $HeavyWeaponsLocation = %pos;
          }
           else if(%category $= "Driving")
          {
          $VroomVroomJail = %pos;
          }
}
 
 
 
 
package respawns
{
        function gameConnection::spawnPlayer(%client)
        {
                if(%client.isJailed)
                {
                        return;
                }
                parent::spawnPlayer(%client);
        }
};
activatePackage(respawns);
I'm getting a syntax error @ package Respawns, and I can't figure out how to fix :V

11
Modification Help / Console throwing an error
« on: April 18, 2015, 09:15:20 PM »
I got an error that says eval error >> 109232 while trying to make the Alternative Eval addon work. Does anybody know how to fix this/prevent this?
EDIT: So apparently, it's my DataBlockID. I just tested this.
Weird.

12
Drama / Cca, being a total starfish.
« on: January 13, 2015, 07:27:40 PM »
So, when I'm on my friend's server today, I get a PM on steam saying "You loving starfish backstabber" from Rebotto. Who is rebotto you ask? The person making the CityRPG. Some starfish (you can guess, Cca) has been imitating me. I wonder who? I ask Rebotto, I get a ID, put it in ORBs, and lo and behold! It turns up that Cca (found out from previous names) has been using this id! Amazing! pm me for proof n crap
/discuss

13
Help / Possible DDOS on auth. servers?
« on: May 11, 2014, 09:35:27 PM »
So, I just experienced like 2 auth. issues on a lot of servers, and I think it's someone ddosing the main auth. servers?
Either it's just me or it's other people.

Pages: [1]