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.
So i've been noticing many people wanting to know how to make bots in everybody edits, so i will be doing a series of tutorials based on requests from people. Many of these will go fast and not in depth what so ever but it will show you how to get things done. Enjoy and request how to make things in ee (Btw if anyone knows how to fix my cursor that would be helpful c: )
Tutorial 1 Connecting to Everybody Edits
Tutorial 2 How to place blocks in Everybody Edits
Tutorial 3 How to use Everybody Edits Info
Tutorial 4 Getting map data
Tutorial 5 How to make a digbot
Tutorial 6 How to get username
Tutorial 7 How to make commands
Tutorial 8 How to make wins
Tutorial 9 How to make a snake
Tutorial 10 How to make random blocks
Tutorial 11 How to make push blocks
Tutorial 12 How to make rain
Tutorial 13 How to make replace
Tutorial 14 How to use Processors worldata
Tutorial 15 How to make an admin list
Tutorial 16 How to make an Add/Left event
Tutorial 17 How to Save/Read Worlds
Tutorial 18: Connection [Voice Over]
If you would like me to make a bot for you, go here.
Offline
AmdS, TSF14, Krosis, Prodigy, IWillStalkYou, Kikikan, Real_Naa2001, jonhvictor2004sonic, flamex, POLAK23P, Br0k3n, 912468, Fastmapler, shadowda, goeyfun, NegaStrife, Trung, Xfrogman43, N1KF, mrjawapa, Processor, madiik, Minimania, mochonoob, MikeK, Gooberg, soulrunner, ttskate53, MartenM, GareY, Blackmask
Lol cursor is messed up. Good tutorial though.
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
Is your cursor like that irl or just the video
Offline
Offline
Your email and password are in the first video... Maybe you should leave them out.
And in the pastebin that is in the description of the first video, you shouldn't send "init2" right after "init", but you should send it when you receive "init"...
Offline
Your email and password are in the first video... Maybe you should leave them out.
And in the pastebin that is in the description of the first video, you shouldn't send "init2" right after "init", but you should send it when you receive "init"...
If you try to log in with that acc you will see it's my alt... and idc about that acc. Second, if you look, i took out the init2 in the video and put it in init in the third tutorial.
If you would like me to make a bot for you, go here.
Offline
Snake
Automated block movement.
(Possibly hardcoded)
Random Block Placement
A simple wurm.
How to move the bot to a certain location.
Something with Timers?
(Race Bot?)
Offline
Wouldn't it be so much easier to just use your voice? ...like every other video tutorial?
Offline
He's already been doxxed, he's got nothing left to lose by voicing them
Come find me in game!
Offline
I don't like hearing my voice is the only problem, and yeah i don't mind if you guys know my name or my alt acc info.
If you would like me to make a bot for you, go here.
Offline
I get an error when using the Rot13 class, It say that it doesn't contain a definition for Transform.
Offline
Um it should. But if not, do this:
http://pastebin.com/Pj6tvNNx
then do derot(m.GetString(5));
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
just copy the whole code in the class it makes, and paste what's in the pastebin
EDIT: Also i can make more advanced tutorials for anyone that would like them
If you would like me to make a bot for you, go here.
Offline
Could you do one of creating an admin list? Thanks in advance.
Offline
Could you do one of creating an admin list? Thanks in advance.
#region Variables
//...
List<string> admins = new List<string>();
//...
#endregion
// Adding to the list.
admins.Add("input");
// Removing.
admins.Remove("input");
// Checking.
if (admins.Contains("input"))
{
// Do stuff.
}
Offline
Could you do one of creating an admin list? Thanks in advance.
#region Variables
//...
List<string> admins = new List<string>();
//...
#endregion// Adding to the list.
admins.Add("input");// Removing.
admins.Remove("input");// Checking.
if (admins.Contains("input"))
{
// Do stuff.
}
Or you could just do:
string[] Mods = { "soulrunner" };
Then u can make a bool in Player class: bool isMod;
in case "add":
if (Players.Contains(Players[m.GetInt(0)].Username)) { Players[m.GetInt(0)].isMod = true; }
Then just where u need the mod stuff to be, do:
if (Players[m.GetInt(number)].isMod)) { //code }
Hope this helps!
Offline
Could you do one of creating an admin list? Thanks in advance.
Uploaded
If you would like me to make a bot for you, go here.
Offline
soulrunner wrote:Could you do one of creating an admin list? Thanks in advance.
darkdragon4000 wrote:#region Variables
//...
List<string> admins = new List<string>();
//...
#endregion// Adding to the list.
admins.Add("input");// Removing.
admins.Remove("input");// Checking.
if (admins.Contains("input"))
{
// Do stuff.
}Or you could just do:
string[] Mods = { "soulrunner" };
Then u can make a bool in Player class: bool isMod;
in case "add":
if (Players.Contains(Players[m.GetInt(0)].Username)) { Players[m.GetInt(0)].isMod = true; }Then just where u need the mod stuff to be, do:
if (Players[m.GetInt(number)].isMod)) { //code }
Hope this helps!
He wanted an admins list where the list would be dynamic, which differs from a mod list with permanent administrators :p
Though, that would work once you change the array into a list.
Offline
i'm not a coder. your first tutorial is hard to follow. it took me hours to figure stuff out. and it ended up with a load of errors. i don't understand c# in the slightest. i want to know how to make a bot. thnxs anyway for the tutorials.
color = #1E1E1E
Offline
You should learn SOME C# before trying to make bots.
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
Offline
wow. thanks for the links. also, after following you first tutorial i have gotten it down to one error. Error 1
"No overload for method 'SimpleConnect' takes 3 arguments"
it happens at
PlayerIO.QuickConnect.SimpleConnect("everybody-edits-su9rn58o40itdbnw69plyw", Email_TextBox.Text, Password_TextBox.Text)
in the connect code. i got the bot to run once but i dont know how and when trying to debug it always says bot.exe is missing. what does this all mean? thanks
color = #1E1E1E
Offline
http://forums.everybodyedits.com/viewtopic.php?id=27255
its your code...
Create a successful "left" message tutorial.
wow. thanks for the links. also, after following you first tutorial i have gotten it down to one error. Error 1
"No overload for method 'SimpleConnect' takes 3 arguments"
it happens at
PlayerIO.QuickConnect.SimpleConnect("everybody-edits-su9rn58o40itdbnw69plyw", Email_TextBox.Text, Password_TextBox.Text)
in the connect code. i got the bot to run once but i dont know how and when trying to debug it always says bot.exe is missing. what does this all mean? thanks
4th argument must be satisfied with null.
shh i have returned
Offline
Create a successful "left" message tutorial.
I think that i know what espanol jabatheblob1 would just do in the if (m.Type == "left")
Hint:
if (Players.ContainsKey(m.GetInt(0))) { Players.Remove(m.GetInt(0)); }
Offline
[ Started around 1732532278.47 - Generated in 0.089 seconds, 13 queries executed - Memory usage: 1.84 MiB (Peak: 2.12 MiB) ]