Official Everybody Edits Forums

Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?

You are not logged in.

#1 2015-12-04 16:55:29

TaskManager
Formerly maxi123
From: i really should update this
Joined: 2015-03-01
Posts: 9,465

635x465 world? o_O


i8SwC8p.png
signature by HG, profile picture by bluecloud, thank!!
previous signature by drstereos

Offline

#2 2015-12-04 17:00:59, last edited by AmdS (2015-12-04 17:35:22)

AmdS
Member
From: Brazil
Joined: 2015-05-27
Posts: 2,384
Website

Re: 635x465 world? o_O

This world is a feature, I think.

It's comum if someone in EE get this world by a bot or other

Offline

#3 2015-12-04 17:05:27

Gosha
Member
From: Russia
Joined: 2015-03-15
Posts: 6,211

Re: 635x465 world? o_O

AmdS wrote:

An admin just gave it to him

^
look at the share link: http://everybodyedits.com/games/PWOmega

PWOmega.

Offline

#4 2015-12-04 17:29:50, last edited by Zumza (2015-12-04 17:33:45)

Zumza
Member
From: root
Joined: 2015-02-17
Posts: 4,656

Re: 635x465 world? o_O

Its a bot generated world. lrussell made an exploit...
edit: But world sizes should be stored in database. And when creating a world the size should be standard.


Everybody edits, but some edit more than others

Offline

#5 2015-12-04 17:50:34

lrussell
Member
From: Saturn's Titan
Joined: 2015-02-15
Posts: 843
Website

Re: 635x465 world? o_O

I'm pretty sure this is the third topic on this world, and it happens every time I randomly open it. I'm surprised I even have it still. https://wiki.everybodyedits.com/images/c/c0/069_LOL

Offline

Wooted by:

#6 2015-12-04 18:32:02

Zumza
Member
From: root
Joined: 2015-02-17
Posts: 4,656

Re: 635x465 world? o_O

lrussell wrote:

I'm pretty sure this is the third topic on this world, and it happens every time I randomly open it. I'm surprised I even have it still. https://wiki.everybodyedits.com/images/c/c0/069_LOL

Well everybody who's discovering a security hole should be rewarded. Thats your prize. //forums.everybodyedits.com/img/smilies/smile


Everybody edits, but some edit more than others

Offline

Wooted by: (4)

#7 2015-12-04 20:49:38

lrussell
Member
From: Saturn's Titan
Joined: 2015-02-15
Posts: 843
Website

Re: 635x465 world? o_O

Zumza wrote:
lrussell wrote:

I'm pretty sure this is the third topic on this world, and it happens every time I randomly open it. I'm surprised I even have it still. https://wiki.everybodyedits.com/images/c/c0/069_LOL

Well everybody who's discovering a security hole should be rewarded. Thats your prize. //forums.everybodyedits.com/img/smilies/smile

I don't even remember how I got it honestly, it could have been atilla who made it for all I know.

Offline

#8 2015-12-04 22:08:31

capasha
Member
Joined: 2015-02-21
Posts: 4,066

Re: 635x465 world? o_O

This wasn't that hard to make. Just change the roomdata or joindata. But that is fixed now.
Here is an example code how I played around with it, http://pastebin.com/DSJNswfX

Offline

Wooted by:

#9 2015-12-04 22:47:23

hummerz5
Member
From: wait I'm not a secret mod huh
Joined: 2015-08-10
Posts: 5,853

Re: 635x465 world? o_O

Ah yes, the semi-annual noob hunt. Lrussell simply lured one out into the open
and yes, there are many
I have some

I do not like how it was patched.
ha.

Offline

#10 2015-12-05 00:14:16

Processor
Member
Joined: 2015-02-15
Posts: 2,246

Re: 635x465 world? o_O

No it was not.


I have never thought of programming for reputation and honor. What I have in my heart must come out. That is the reason why I code.

Offline

#11 2015-12-05 05:33:34

hummerz5
Member
From: wait I'm not a secret mod huh
Joined: 2015-08-10
Posts: 5,853

Re: 635x465 world? o_O

Processor wrote:

No it was not.

what is your goal in saying this

Offline

#12 2015-12-05 11:03:01

AmdS
Member
From: Brazil
Joined: 2015-05-27
Posts: 2,384
Website

Re: 635x465 world? o_O

hummerz5 wrote:

Ah yes, the semi-annual noob hunt. Lrussell simply lured one out into the open
and yes, there are many
I have some

I do not like how it was patched.
ha.

Processor wrote:

No it was not.

Offline

#13 2015-12-05 18:31:54, last edited by Anatoly (2015-12-05 18:32:33)

Anatoly
Guest

Re: 635x465 world? o_O

So my question: How to get the world whithout hacing it?

Or if its only bot, give the code me plz.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using PlayerIOClient;
namespace createworld
{
    class Program
    {
        static Connection con;
        static void Main(string[] args)
        {
            connect();
            Console.ReadLine();
        }
        static void connect() {
            PlayerIO.QuickConnect.SimpleConnect("everybody-edits-su9rn58o40itdbnw69plyw", "guest", "guest",
                delegate(Client c)
                {
                    Dictionary<string, string> roomData = new Dictionary<string, string>();
                    Dictionary<string, string> joinData = new Dictionary<string, string>();
 
                    roomData.Add("needskey", "yep");
                    roomData.Add("name", "The name of the world");
                    roomData.Add("beta", "true");
                    roomData.Add("woots", "9999999999999");
                   
                    joinData.Add("editkey", "");
                   
 
                    try
                    {
 
                        con = c.Multiplayer.CreateJoinRoom("randomRoom", "Beta137", true, roomData, joinData);
                        con.Send("init");
                        con.Send("init2");
                        con.OnMessage += delegate(object sender, PlayerIOClient.Message m)
                        {
                            //Console.WriteLine(m);
                        };
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine(e.Message);
                    }
 
                },
                delegate(PlayerIOError error)
                {
 
                    Console.WriteLine(error.Message);
                });
 
        }
    }
}

-- This one doesn`t work

He said no PlayerIO found

#14 2015-12-05 19:50:09

capasha
Member
Joined: 2015-02-21
Posts: 4,066

Re: 635x465 world? o_O

AnatolyEE wrote:

So my question: How to get the world whithout hacing it?

Or if its only bot, give the code me plz.


-- This one doesn`t work

He said no PlayerIO found

It's not meant to just copy and paste. The code is old and outdated.

Offline

#15 2015-12-05 20:48:18

Koya
Fabulous Member
From: The island with those Brits
Joined: 2015-02-18
Posts: 6,310

Re: 635x465 world? o_O

Give JaWapa money and you'll get the world.


Po9cnQh.png

PLNQVL8.png
Thank you eleizibeth ^

1SYOldu.png

I stack my signatures rather than delete them so I don't lose them
giphy.gif

WfSi4mm.png

Offline

Wooted by: (4)

#16 2015-12-12 18:50:09

SirJosh3917
Formerly ninjasupeatsninja
From: USA
Joined: 2015-04-05
Posts: 2,095

Re: 635x465 world? o_O

Koya wrote:

Give JaWapa money and you'll get the world.

I'd buy a world that big.
How Much?

Offline

#17 2015-12-12 18:50:50

AmdS
Member
From: Brazil
Joined: 2015-05-27
Posts: 2,384
Website

Re: 635x465 world? o_O

ninjasupeatsninja wrote:
Koya wrote:

Give JaWapa money and you'll get the world.

I'd buy a world that big.
How Much?

Man, please.

Offline

Wooted by: (3)
AmdS1449942650565904

Board footer

Powered by FluxBB

[ Started around 1732057201.7926 - Generated in 0.251 seconds, 13 queries executed - Memory usage: 1.67 MiB (Peak: 1.9 MiB) ]