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-04-21 20:50:37, last edited by CJMaeder (2015-05-22 23:30:19)

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Want a Feature added to Everybody Edits for bots? Post here.

Want a Feature added to Everybody Edits for bots? Post here.

Added:

Pending:
Sending byte arrays to server for blocks (Awaiting approval from the rest of the team)
Ability to Teleport player by ID

Rejected:
None


Lame!

Offline

#2 2015-04-21 22:16:37, last edited by DarkDragon4900 (2015-04-21 23:01:55)

DarkDragon4900
Member
Joined: 2015-03-17
Posts: 251

Re: Want a Feature added to Everybody Edits for bots? Post here.

[Edit] Oh, I see. Nevermind.

Offline

Wooted by: (4)

#3 2015-04-21 22:18:41

realmaster42
Formerly marcoantonimsantos
From: ̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍
Joined: 2015-02-20
Posts: 1,380
Website

Re: Want a Feature added to Everybody Edits for bots? Post here.

con.Send("bot", ...)

Custom event for bot makers in wich bot owners can send custom signals.

ex:

con.Send("bot", "0", 12);

case "bot":
string id = m.String(0);
int coins = m.GetInt(1);
break;

http://i.imgur.com/bjvgH5L.png?1

Offline

#4 2015-04-22 09:10:00, last edited by goeyfun (2015-04-22 09:18:39)

goeyfun
Member
From: Mighty Japan
Joined: 2015-02-18
Posts: 667

Re: Want a Feature added to Everybody Edits for bots? Post here.

wut?! ...
Bot is here to do these stuffs.
It calculates where and how to place the blocks.

connection.Send(worldkey + "fill", blockId, layer, x1, y1, x2, y2);

Why is the server handling this? This idea neglects the function of bots.

If your ans is "The server can handle it faster!"
Then why not turn "connection.Send(worldkey + "fill", blockId, layer, x1, y1, x2, y2);" to a command where everyone can use without a bot?

/fillexpand bid1 bid2

Ug3JzgO.png

Offline

#5 2015-04-22 10:09:18

DarkDragon4900
Member
Joined: 2015-03-17
Posts: 251

Re: Want a Feature added to Everybody Edits for bots? Post here.

I agree with goeyfun, it's all about fun when you code.
It won't be fun when everything's automated.

Offline

#6 2015-04-22 15:45:00

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

Re: Want a Feature added to Everybody Edits for bots? Post here.

Then code in assembly //forums.everybodyedits.com/img/smilies/tongue


Everybody edits, but some edit more than others

Offline

#7 2015-04-22 15:59:33

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Re: Want a Feature added to Everybody Edits for bots? Post here.

We added the fill function to increase the speed in which you can fill a level.
With the fill function you can fill the whole level in 1 second by sending the server 1 line of code.
This was not just to make it easier for bot makers, Now with this its you can fill the world without lag kicking everyone.

Remember you do not have to use it. //forums.everybodyedits.com/img/smilies/smile


Lame!

Offline

#8 2015-04-22 22:47:01

Mylo
Master Developer
From: Drama
Joined: 2015-02-15
Posts: 829

Re: Want a Feature added to Everybody Edits for bots? Post here.

Well, my first one would be to fix the AFK player gravity stuff.
E.g. player who is AFK falls into spikes => respawn event is raised after like 30sec - make this instant.

Offline

#9 2015-04-23 00:27:02, last edited by Koya (2015-04-23 00:28:27)

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

Re: Want a Feature added to Everybody Edits for bots? Post here.

connection.Send(worldkey + "plc", playername, HEX-colour);

Changes a player's name in the player list

connection.Send(worldkey + "plp", playername, number);

Has a number on the right of the player name in the player list

connection.Send(worldkey + "plh", playername, height);

Puts players in new position of the player list


Imagine this

SQUADFS                 43
MYLO                       32
ZUMZA123               31
GOEYFUN                 42
NOU                        32
CJMAEDER               8

So you can have live players in a boss, ranks in a world, points and also put people in different places in the list.


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

#10 2015-04-23 00:29:40

Hexagon
Member
Joined: 2015-04-22
Posts: 1,213

Re: Want a Feature added to Everybody Edits for bots? Post here.

Double buffered blocks. This means that I can send a list of blocks to the server, and then send a command to make them appear all at once.

Offline

#11 2015-04-23 21:01:34

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Re: Want a Feature added to Everybody Edits for bots? Post here.

Hexagon wrote:

Double buffered blocks. This means that I can send a list of blocks to the server, and then send a command to make them appear all at once.

We have been discussing this. But with a few extra cool features //forums.everybodyedits.com/img/smilies/big_smile


Lame!

Offline

#12 2015-04-23 21:14:27

Hexagon
Member
Joined: 2015-04-22
Posts: 1,213

Re: Want a Feature added to Everybody Edits for bots? Post here.

I'd like to have custom sound effects (rather than just the coins and woots.) For example, if it was a mario themed level, it could have mario music . If it was a minecraft-based level, a zombie would make a sound as it approached you. Something like, Cardinal.

Offline

Wooted by: (3)

#13 2015-04-23 21:25:36

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Re: Want a Feature added to Everybody Edits for bots? Post here.

Hexagon wrote:

I'd like to have custom sound effects (rather than just the coins and woots.) For example, if it was a mario themed level, it could have mario music . If it was a minecraft-based level, a zombie would make a sound as it approached you. Something like, Cardinal.

This topic is for bot features.

Please post stuff like this in the Game Suggestions Forum. http://forums.everybodyedits.com/viewforum.php?id=5


Lame!

Offline

Wooted by: (3)

#14 2015-04-23 22:14:40

Psychocrysma
Member
Joined: 2015-02-26
Posts: 46

Re: Want a Feature added to Everybody Edits for bots? Post here.

Koya wrote:
connection.Send(worldkey + "plc", playername, HEX-colour);

Changes a player's name in the player list

connection.Send(worldkey + "plp", playername, number);

Has a number on the right of the player name in the player list

connection.Send(worldkey + "plh", playername, height);

Puts players in new position of the player list


Imagine this

SQUADFS                 43
MYLO                       32
ZUMZA123               31
GOEYFUN                 42
NOU                        32
CJMAEDER               8

So you can have live players in a boss, ranks in a world, points and also put people in different places in the list.

This OMG. I want this! Life easier and makes people more aware. Makes less spam as well ^^

Offline

#15 2015-04-23 22:41:30

Psychocrysma
Member
Joined: 2015-02-26
Posts: 46

Re: Want a Feature added to Everybody Edits for bots? Post here.

CJMAEDER wrote:
Hexagon wrote:

I'd like to have custom sound effects (rather than just the coins and woots.) For example, if it was a mario themed level, it could have mario music . If it was a minecraft-based level, a zombie would make a sound as it approached you. Something like, Cardinal.

This topic is for bot features.

Please post stuff like this in the Game Suggestions Forum. http://forums.everybodyedits.com/viewforum.php?id=5

Actually, I'd like to add on this... I'd like to have something like this:

conn.Send("csound", string URL, double timestart, double timeend)

string URL = URL to sound file
double timestart = Start at specified time of the sound file
double timeend = End the sound at specified time

How this works? I am not sure how to program in Action Script 3 (though I kinda know how, but not totally), I do think it would be possible to send a stream, right? This could open the file with a stream on the server and send it to the client.

In other words, any sound file could be played //forums.everybodyedits.com/img/smilies/smile

Offline

Wooted by: (3)

#16 2015-04-23 22:57:51

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Re: Want a Feature added to Everybody Edits for bots? Post here.

Psychocrysma wrote:
CJMAEDER wrote:
Hexagon wrote:

I'd like to have custom sound effects (rather than just the coins and woots.) For example, if it was a mario themed level, it could have mario music . If it was a minecraft-based level, a zombie would make a sound as it approached you. Something like, Cardinal.

This topic is for bot features.

Please post stuff like this in the Game Suggestions Forum. http://forums.everybodyedits.com/viewforum.php?id=5

Actually, I'd like to add on this... I'd like to have something like this:

conn.Send("csound", string URL, double timestart, double timeend)

string URL = URL to sound file
double timestart = Start at specified time of the sound file
double timeend = End the sound at specified time

How this works? I am not sure how to program in Action Script 3 (though I kinda know how, but not totally), I do think it would be possible to send a stream, right? This could open the file with a stream on the server and send it to the client.

In other words, any sound file could be played //forums.everybodyedits.com/img/smilies/smile

Which could be used for inappropriate stuff. So no sorry //forums.everybodyedits.com/img/smilies/tongue


Lame!

Offline

Wooted by: (3)

#17 2015-04-24 00:45:18, last edited by Mylo (2015-04-24 00:47:40)

Mylo
Master Developer
From: Drama
Joined: 2015-02-15
Posts: 829

Re: Want a Feature added to Everybody Edits for bots? Post here.

CJMAEDER wrote:
Psychocrysma wrote:
CJMAEDER wrote:
Hexagon wrote:

I'd like to have custom sound effects (rather than just the coins and woots.) For example, if it was a mario themed level, it could have mario music . If it was a minecraft-based level, a zombie would make a sound as it approached you. Something like, Cardinal.

This topic is for bot features.

Please post stuff like this in the Game Suggestions Forum. http://forums.everybodyedits.com/viewforum.php?id=5

Actually, I'd like to add on this... I'd like to have something like this:

conn.Send("csound", string URL, double timestart, double timeend)

string URL = URL to sound file
double timestart = Start at specified time of the sound file
double timeend = End the sound at specified time

How this works? I am not sure how to program in Action Script 3 (though I kinda know how, but not totally), I do think it would be possible to send a stream, right? This could open the file with a stream on the server and send it to the client.

In other words, any sound file could be played //forums.everybodyedits.com/img/smilies/smile

Which could be used for inappropriate stuff. So no sorry //forums.everybodyedits.com/img/smilies/tongue

Make it owner only, restrict it to soundcloud files, save played sound urls in a log and done. If abuse happens players can /report - so. That shouldn't be problematic. I mean, chat can be abused too - editing can be abused too. Playing custom sounds would be something quite amazing.

Offline

Wooted by: (3)

#18 2015-04-24 01:50:59

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Re: Want a Feature added to Everybody Edits for bots? Post here.

Mylo wrote:
CJMAEDER wrote:
Psychocrysma wrote:
CJMAEDER wrote:
Hexagon wrote:

I'd like to have custom sound effects (rather than just the coins and woots.) For example, if it was a mario themed level, it could have mario music . If it was a minecraft-based level, a zombie would make a sound as it approached you. Something like, Cardinal.

This topic is for bot features.

Please post stuff like this in the Game Suggestions Forum. http://forums.everybodyedits.com/viewforum.php?id=5

Actually, I'd like to add on this... I'd like to have something like this:

conn.Send("csound", string URL, double timestart, double timeend)

string URL = URL to sound file
double timestart = Start at specified time of the sound file
double timeend = End the sound at specified time

How this works? I am not sure how to program in Action Script 3 (though I kinda know how, but not totally), I do think it would be possible to send a stream, right? This could open the file with a stream on the server and send it to the client.

In other words, any sound file could be played //forums.everybodyedits.com/img/smilies/smile

Which could be used for inappropriate stuff. So no sorry //forums.everybodyedits.com/img/smilies/tongue

Make it owner only, restrict it to soundcloud files, save played sound urls in a log and done. If abuse happens players can /report - so. That shouldn't be problematic. I mean, chat can be abused too - editing can be abused too. Playing custom sounds would be something quite amazing.

We shall see.


Lame!

Offline

#19 2015-04-24 01:56:52

CJMaeder
Member
From: Lame Land
Joined: 2015-04-06
Posts: 219

Re: Want a Feature added to Everybody Edits for bots? Post here.

Koya wrote:
connection.Send(worldkey + "plc", playername, HEX-colour);

Changes a player's name in the player list

connection.Send(worldkey + "plp", playername, number);

Has a number on the right of the player name in the player list

connection.Send(worldkey + "plh", playername, height);

Puts players in new position of the player list


Imagine this

SQUADFS                 43
MYLO                       32
ZUMZA123               31
GOEYFUN                 42
NOU                        32
CJMAEDER               8

So you can have live players in a boss, ranks in a world, points and also put people in different places in the list.

I like it. But I think something like this would need a special leader board option instead.


Lame!

Offline

Wooted by: (3)

#20 2015-04-24 02:41:14, last edited by Psychocrysma (2015-04-24 06:29:41)

Psychocrysma
Member
Joined: 2015-02-26
Posts: 46

Re: Want a Feature added to Everybody Edits for bots? Post here.

CJMAEDER wrote:
Koya wrote:
connection.Send(worldkey + "plc", playername, HEX-colour);

Changes a player's name in the player list

connection.Send(worldkey + "plp", playername, number);

Has a number on the right of the player name in the player list

connection.Send(worldkey + "plh", playername, height);

Puts players in new position of the player list


Imagine this

SQUADFS                 43
MYLO                       32
ZUMZA123               31
GOEYFUN                 42
NOU                        32
CJMAEDER               8

So you can have live players in a boss, ranks in a world, points and also put people in different places in the list.

I like it. But I think something like this would need a special leader board option instead.

Hmm, that might be a good idea as well. However, those numbers, I'd kind of like them. Actually, I'd change it a bit... Here's what I would do (if possible)

#region init
if (m.Type == "init")
{
    //Some value is set to get the amount of default/last used subitems. In other words, you have: Username ([0]); String (since we can always convert it);
    //To add a column, there could be a command such as: conn.Send(worldKey + "userlist", "add", defaultValue, int position);
    //To edit a column (change values): conn.Send(worldKey + "userlist", "edit", string username, int positionOfColumnToEdit, string newValue);
    //To remove a column: conn.Send(worldKey + "userlist", "rem", int positionOfColumn);
{

Well, I think you can understand that, but I think it would be pretty cool. Well, to be honest, what I'm more concerned about is the actual space it uses in a database. I don't know what it costs or how much you are allowed to have, but I kinda think about that in my propositions...

Offline

Wooted by: (3)

#21 2015-04-24 12:51:17

Hexagon
Member
Joined: 2015-04-22
Posts: 1,213

Re: Want a Feature added to Everybody Edits for bots? Post here.

Koya wrote:
connection.Send(worldkey + "plc", playername, HEX-colour);

Changes a player's name in the player list

connection.Send(worldkey + "plp", playername, number);

Has a number on the right of the player name in the player list

connection.Send(worldkey + "plh", playername, height);

Puts players in new position of the player list


Imagine this

SQUADFS                 43
MYLO                       32
ZUMZA123               31
GOEYFUN                 42
NOU                        32
CJMAEDER               8

So you can have live players in a boss, ranks in a world, points and also put people in different places in the list.

Did you mean something like this?

sRxX879.png

Offline

Wooted by: (3)

#22 2015-04-24 14:15:27

ZeldaXD
EE Homeboy
From: Cyprus
Joined: 2015-02-15
Posts: 1,539
Website

Re: Want a Feature added to Everybody Edits for bots? Post here.

CJMAEDER wrote:
Mylo wrote:
CJMAEDER wrote:
Psychocrysma wrote:
CJMAEDER wrote:

This topic is for bot features.

Please post stuff like this in the Game Suggestions Forum. http://forums.everybodyedits.com/viewforum.php?id=5

Actually, I'd like to add on this... I'd like to have something like this:

conn.Send("csound", string URL, double timestart, double timeend)

string URL = URL to sound file
double timestart = Start at specified time of the sound file
double timeend = End the sound at specified time

How this works? I am not sure how to program in Action Script 3 (though I kinda know how, but not totally), I do think it would be possible to send a stream, right? This could open the file with a stream on the server and send it to the client.

In other words, any sound file could be played //forums.everybodyedits.com/img/smilies/smile

Which could be used for inappropriate stuff. So no sorry //forums.everybodyedits.com/img/smilies/tongue

Make it owner only, restrict it to soundcloud files, save played sound urls in a log and done. If abuse happens players can /report - so. That shouldn't be problematic. I mean, chat can be abused too - editing can be abused too. Playing custom sounds would be something quite amazing.

We shall see.

Restrict it to MIDI files, problem solved, no abuse possible.


gLjTZE1.png

Offline

#23 2015-04-25 06:24:19

Psychocrysma
Member
Joined: 2015-02-26
Posts: 46

Re: Want a Feature added to Everybody Edits for bots? Post here.

ZeldaXD wrote:
CJMAEDER wrote:
Mylo wrote:
CJMAEDER wrote:
Psychocrysma wrote:

Actually, I'd like to add on this... I'd like to have something like this:

conn.Send("csound", string URL, double timestart, double timeend)

string URL = URL to sound file
double timestart = Start at specified time of the sound file
double timeend = End the sound at specified time

How this works? I am not sure how to program in Action Script 3 (though I kinda know how, but not totally), I do think it would be possible to send a stream, right? This could open the file with a stream on the server and send it to the client.

In other words, any sound file could be played //forums.everybodyedits.com/img/smilies/smile

Which could be used for inappropriate stuff. So no sorry //forums.everybodyedits.com/img/smilies/tongue

Make it owner only, restrict it to soundcloud files, save played sound urls in a log and done. If abuse happens players can /report - so. That shouldn't be problematic. I mean, chat can be abused too - editing can be abused too. Playing custom sounds would be something quite amazing.

We shall see.

Restrict it to MIDI files, problem solved, no abuse possible.

Just saying, but there should be a message for when a sound starts and when a sound ends. That could make the creation of a sort of playlist easier.

Offline

Wooted by:

#24 2015-04-25 12:37:47

Hexagon
Member
Joined: 2015-04-22
Posts: 1,213

Re: Want a Feature added to Everybody Edits for bots? Post here.

ZeldaXD wrote:

Restrict it to MIDI files, problem solved, no abuse possible.

If I'm not mistaken, you can send synthesized voices through midi.

On another note, very very loud sounds can be abusive to the ears, unless they can be programmically verified before deployment.

Offline

Wooted by:

#25 2015-04-25 15:50:03

realmaster42
Formerly marcoantonimsantos
From: ̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍̍
Joined: 2015-02-20
Posts: 1,380
Website

Re: Want a Feature added to Everybody Edits for bots? Post here.

Hexagon wrote:
ZeldaXD wrote:

Restrict it to MIDI files, problem solved, no abuse possible.

If I'm not mistaken, you can send synthesized voices through midi.

On another note, very very loud sounds can be abusive to the ears, unless they can be programmically verified before deployment.

and very very high or down pitch sounds too.
This may bring problems.       

Anyways,
add the con.Send("bot", ...) so users can make their own bot-send-event.


http://i.imgur.com/bjvgH5L.png?1

Offline

Wooted by: (2)
Vasum011438608659526591

Board footer

Powered by FluxBB

[ Started around 1713914582.572 - Generated in 0.181 seconds, 10 queries executed - Memory usage: 2.04 MiB (Peak: 2.4 MiB) ]