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 Re: Off Topic Discussion » Trouble for homeworks? *Post here and use pictures below* » 2017-03-28 17:26:35

Onjit wrote:
SmittyW wrote:

Well how far did you get? The obvious first step would be to set u = x^n and dv = e^-x

You can prove this by setting n=1, n=2, n=3... until you recognize a pattern of solutions that equal n!. That's the way I was taught. I never liked it because I thought this was a single integration problem. Maybe there was another way I dunno. The answers to the first three would be 1, 2, and 6, which makes sense because 3! = (3 * 2 * 1) = 6

here's what i ended up submitting. the integral cancelled itself out so i made up some bs instead

I'm late, but here's what i'd do:

Image

#2 Re: Questions and Answers » Xx.ASK FOR MINIGAME/CAMPAIGN HELP HERE.xX » 2017-03-24 15:57:36

LOL6 wrote:

This was already answered in this thread.

Krosis wrote:

KBVj7EU.png

#3 Re: Questions and Answers » Is there any way to make ee on fb less laggy? » 2016-03-30 22:38:17

Since ee lagged a lot for me on facebook, I used to copy the object, paste it in notepad and save it as ee.html

img

I also used a bit of code to make the background black:

code
img

I know it's probably not the easiest solution, but it helped me to stop the lag...

#4 Re: Questions and Answers » Everybody Edits Email » 2016-03-17 16:36:51

Coolguy789t wrote:

Does Everybody Edits have an email? Because I want to report a website that is related in hacking Everybody Edits. If no, please suggest an alternative.

I don't know the email of EE, but you could PM Nou or any other admin to contact them

#5 Re: Off Topic Discussion » lets have some maths » 2016-03-15 17:36:24

AnatolyEE wrote:
Hidden text
4-9/2+9/2 =
root{(4-9/2) ^ 2} + 9/2 =

(4 - 9/2) is a negative number. When you bring it to the power of 2, it becomes positive. A root has always a positive and a negative solution, so when you erase the root in the end, you need to take the negative one. I wrote your last steps in a word file to make it easier to read:

mqkq2NZ.png

#6 Re: Questions and Answers » Xx.ASK FOR MINIGAME/CAMPAIGN HELP HERE.xX » 2016-03-14 17:16:34

FLANGEL wrote:

I am stucked in the tutorial 2 to grab the firsts blue coins
lol
i dunno how to jump of out of water:mad:

You actually don't need to collect the coins to complete this world, but here are the blue coins:

blue coins

http://i.imgur.com/NH2oln1.jpg

#7 Re: Bots and Programming » Help with bot. » 2016-03-08 20:31:13

PATRIK wrote:

Thx but another error pup ups..
http://prntscr.com/acrhdo

I think the error is cause because you add the player two times to the dictionary, which causes the dictionary to have two items with the same key, so just delete one of the two.
j08Hq86.png

#8 Re: Bots and Programming » Code Error » 2016-03-05 15:19:14

Firecrackericebreak wrote:
Hexagon wrote:

The new EE protocol has introduced a breaking change: there isn't a worldkey anymore. For more info, see here.

[5] <String> RoomRot13

According to this String(5) is a String, how come it shows up as an Integer?

7LIaUIq.png
You were probably looking at capasha's site, which isn't up to date...

#9 Re: Game Discussion » Max sized minimap? » 2016-03-02 13:42:37

Awesomenessgood wrote:

http://everybodyedits.com/games/PWSHOWPATH1EI

Probably been posted before but I'm too lazy to find it. Also how does this work? Is this allowed? Hmm

u76gt0X.png
NVD also said that he might reset all of these big worlds

#10 Re: Bug Reports » Portal with boosts bug » 2016-02-14 13:27:57

AnatolyEE wrote:
zioxei wrote:
AnatolyEE wrote:

Thats bug happens because of the portal rotation.  The left is into down but the pwer from the right pushes it right to one block, if you rotate the portal the smiley wont get stuck

What? How? The rotation of portals and boosts which he showed should make you go down but they don't.

Yes because the pwoer of the right boost into left was also existing so he moved to one block. If the pwoer was into left and not down he wouldnt get stuck. If you want to go down, just place an invisible block left to the left portal!

But when you place the target portal to up, you don't go to the left...

#11 Bug Reports » Portal with boosts bug » 2016-02-13 18:59:50

912468
Replies: 8

When you get launched into a portal with boosts, you get stuck on the block (red) next to the target portal if the portals are orientated like in the GIF (green path is the path you should normally follow). This doesn't work if you orientate the portals differently:
0q07HJ6.gif
It's also kinda weird that you immediately stop on the block and don't fall off... It also works with arrows, but then you get stuck like halfway on the red block.

#12 Re: Bots and Programming » How to do it that when someone will press SPACE... » 2016-01-12 20:27:18

You can use the following code to know if someone pressed space:

private void onMessage(object sender, PlayerIOClient.Message m)
{
    if (m.Type == "m")
    {
        if (m.GetInt(4) == -52) //Player pressed space
        {
            //Do Something
        }
    }
}

The userID is a number you get when someone joins the world and you can use it to get there name. You can store these values in a dictionary:

public Dictionary<int, string> players = new Dictionary<int, string>();

You can add the ID and name of the player in the "add" message in onMessage:

private void onMessage(object sender, PlayerIOClient.Message m)
{
if (m.Type == "add")
{
    players.add(m.GetInt(0), m.GetString(1));    //This will add the ID and name of the player to the dictionary
}

if (m.Type == "m")
{
    string playerName = players[m.GetInt(0)]; //Use this to get the name of the player by his ID

    if (m.GetInt(4) == -52) //When the player pressed space
    {
        con.Send("say", "Hello, " + playerName);
    }
}

EDIT: You can watch this video if you want more information on how to get the username of a player. In this topic there are also some other great tutorials.

#13 Re: Bug Reports » [Official] [BUGS] DECEMBER 23, 2015 UPDATE » 2015-12-24 11:13:33

When you write a world description that contains a "F", it will open the search bar, so you have to click the world description again to keep writing.

The world desription also doesn't seem to save, even when I click the "Save" button.

#14 Re: Game Discussion » [Going Home] Sign-Up Thread » 2015-08-12 20:03:38

Team: 912468
Members: 912468
Team Capitain: 912468

#15 Re: Bots and Programming » [HELP] Arguments. » 2015-07-23 19:07:05

I guess the problem is that your seconde switch checks the whole message instead of only the command, I think you should use this code:

Code

Instead of the switch, you could also use an if-statement:

if-statement

#18 Re: Game Discussion » Everybody Edits gem hunt » 2015-06-30 20:00:01

Tomkazaz wrote:

http://ktnmiintivtnetmt.tumblr.com/ There's nothing in this tumblr page

Try inspect element:

<!--EMAIL: [email protected]  PASSWORD: coinhunt2341-->

#19 Re: Game Discussion » Everybody Edits gem hunt » 2015-06-30 19:57:34

Tomkazaz wrote:
912468 wrote:

I found it //forums.everybodyedits.com/img/smilies/tongue I got 12 gems //forums.everybodyedits.com/img/smilies/smile

EDIT: http://pastebin.com/qCwP7ywe

What? Where did you get the link to THAT?

On the tumblr page was a hidden email and pass, I logged in to EE with those, and found the link to the pastebin in the worlddescription of the world owned by that account.

Board footer

Powered by FluxBB

[ Started around 1714074737.354 - Generated in 0.152 seconds, 9 queries executed - Memory usage: 1.66 MiB (Peak: 1.92 MiB) ]