Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 8,079
» Latest member: seanac11
» Forum threads: 10,350
» Forum posts: 91,276

Full Statistics

Online Users
There are currently 245 online users.
» 0 Member(s) | 244 Guest(s)
Bing

Latest Threads
I'm leaving the site too....
Forum: 2DWorlds Discussion
Last Post: Jacob_
07-03-2023, 04:59 AM
» Replies: 12
» Views: 6,280
hi there.
Forum: 2DWorlds Discussion
Last Post: Jacob_
01-03-2020, 04:30 AM
» Replies: 1
» Views: 738
obroke
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 10:11 AM
» Replies: 0
» Views: 20,522
fcouldn't
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 09:02 AM
» Replies: 0
» Views: 8,227
qhow
Forum: Current Games
Last Post: PhilipShums
09-06-2017, 07:25 AM
» Replies: 0
» Views: 2,110
zstone
Forum: Current Games
Last Post: TimothyTox
09-06-2017, 07:03 AM
» Replies: 0
» Views: 977
vbit
Forum: Current Games
Last Post: FrancisSah
09-06-2017, 03:00 AM
» Replies: 0
» Views: 960
sildenafil 100 mg sandoz
Forum: Current Games
Last Post: RichardLen
09-06-2017, 12:28 AM
» Replies: 0
» Views: 1,170
mhis
Forum: Current Games
Last Post: TimothyTox
09-05-2017, 04:09 PM
» Replies: 0
» Views: 983
sildenafil citrate 100mg ...
Forum: Current Games
Last Post: Waltertog
09-05-2017, 12:27 PM
» Replies: 0
» Views: 938

 
  Guys, do you think that I deserve to be banned for this?
Posted by: Walrus - 07-15-2012, 12:42 AM - Forum: General Discussion - Replies (23)

Ok so basically, I play a childish game called SocialMeeps, and I was arguing with the moderators because they ban me all the time for saying "Damnit" and for saying "what the hell", I asked the mods why they do it, and they said it was offensive to christianity and I was like WTF??!?!?!?!?!?
And the thing that really bothered me was that they never banned or warned this guy who said the n word multiple times, so I called the mods dumb racist rednecks.
And then I told the mods that the n word is far worse than what I said.
And this guy has a brother who's a moderator, and then he basically tattletaled on me because I said his brother keeps on giving me false bans and your brother shouldn't be a mod, then he told me that as soon as my brother wakes up I'm telling on you, he said that I'm "personally abusing" his brother and he said that I can't talk negatively about the mods.
I told him afterwards that this isn't the soviet union, you aren't my parents, you aren't a dictator, and stop prohibiting me from my freedom of speech.
Then before you know it BAM, I'm banned for 3 days.
Afterwards, I personally message the tattletale on Roblox and said to him "Screw you, and go to hell". And you know what? I honestly don't give a damn if I hurt his feelings.
So guys do you think that I deserved this ban?
And in the moderators note it says: offensive/inappropriate topic
And the reason was: because the mods are dumb
Do you think that I deserved this ban?
And also, a former Buildism member named brassrhino is a moderator on socialmeeps and he's an obvious racist and arrogant piece of garbage.

Print this item

  Buildism put ads on TROLL.WS
Posted by: HolyBanana - 07-14-2012, 10:44 PM - Forum: 2DWorlds Discussion - Replies (15)

Stupid idea, because 90% of their users are from ROBLOX and mostly everyone who uses it is from the forums.

Mostly everyone on the forums knows about Buildism and the people who aren't registered call it a fail.

If you make a Buildism thread you will get trolled to no end.

fail?


Oh, and by the way, hi older members!

Print this item

Brick Flying People.
Posted by: roperson3 - 07-14-2012, 04:36 PM - Forum: Bug Reports - Replies (5)

If there is a ladder in water and you try to climb it, it shoots you up in the air.
:gun_bandana:

Print this item

  Hey guys.
Posted by: Walrus - 07-14-2012, 03:30 PM - Forum: General Discussion - Replies (5)

I just read a fantastic book today called "The Yellow Stream" by: IP daily.



it was about this yellow stream ogm11

Print this item

  Did Walrus leave?
Posted by: Leonartist - 07-14-2012, 03:02 PM - Forum: The Community - Replies (7)

He hasn't been online for a week. Nothing seems right without him. He was pretty funny though.

Print this item

  Animated GIF Skins/backgrounds/parts?
Posted by: Slendurrman - 07-14-2012, 06:00 AM - Forum: Suggestions - Replies (9)

Any support?
or no?

Print this item

  DebugDraw class in JBox2D
Posted by: Dignity - 07-14-2012, 12:35 AM - Forum: Programming - Replies (14)

Here's my code:

Code:
package test;

import org.jbox2d.callbacks.*;
import org.jbox2d.collision.shapes.*;
import org.jbox2d.common.*;
import org.jbox2d.dynamics.*;

public class Main {
    private static DebugDraw debugDraw;
    
    public static DebugDraw getDebugDraw() {
        return debugDraw;
    }
    public static void main(String[] args) {
        Vec2  gravity = new Vec2(0,-10);
    boolean doSleep = true;
    World world = new World(gravity,doSleep);
    BodyDef groundBodyDef = new BodyDef();
    groundBodyDef.position.set(0, -10);
    Body groundBody = world.createBody(groundBodyDef);
    PolygonShape groundBox = new PolygonShape();
    groundBox.setAsBox(50,10);
    groundBody.createFixture(groundBox, 0);

    // Dynamic Body
    BodyDef bodyDef = new BodyDef();
    bodyDef.type = BodyType.DYNAMIC;
    bodyDef.position.set(0, 4);
    Body body = world.createBody(bodyDef);
    PolygonShape dynamicBox = new PolygonShape();
    dynamicBox.setAsBox(1, 1);
    FixtureDef fixtureDef = new FixtureDef();
    fixtureDef.shape = dynamicBox;
    fixtureDef.density=1;
    fixtureDef.friction=0.3f;
    body.createFixture(fixtureDef);

    // Setup world
    float timeStep = 1.0f/60.0f;
    int velocityIterations = 6;
    int positionIterations = 2;

    // Run loop
    for (int i = 0; i < 60; ++i)
    {
        world.step(timeStep, velocityIterations, positionIterations);
        Vec2 position = body.getPosition();
        float angle = body.getAngle();
        debugDraw.setFlags(debugDraw.e_shapeBit);
        world.setDebugDraw(debugDraw);
        System.out.println(i+": X: "+position.x+" Y: "+position.y+" ANGLE: "+angle);
    }

    }
    }

And here's the ouput:
Code:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Exception in thread "main" java.lang.NullPointerException
    at test.Main.main(Main.java:49)
Java Result: 1

I'm not entirely sure what is causing the NPE. Can anyone help?
Btw, this is just a test, not a actual game.
EDIT: Line 49 is "debugDraw.setFlags(debugDraw.e_shapeBit);"

Print this item

  Transparency on Microsoft Paint
Posted by: c00lcurt - 07-13-2012, 07:30 PM - Forum: Free Resources - Replies (5)

Make the background pink, it's color settings are these...

Hue: 200
Sat: 240
Lum: 120

Red: 255
Green: 0
Blue: 255

Print this item

Wink I need some hard core skin ideas.
Posted by: Leonartist - 07-13-2012, 05:17 PM - Forum: Requests - Replies (23)

Give me a chalenge. Request the hardest skin you can ever imagine. I can't use transparency anymore. Sad sorry.

Print this item

  Backing up that Mods > Users
Posted by: Kieron - 07-13-2012, 05:08 PM - Forum: General Discussion - Replies (2)

1 Month ago:

Interwebs - I got diabetes

Community - omgomgomgnononono!!!!111eleven

-------------------------------------------------

Kieron - I got hit by a car

Community - omfggtfonoobnoonecaresgodie

Print this item