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-03-18 04:43:00, last edited by Jabatheblob1 (2015-07-18 11:38:39)

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

[Tutorial] TUTORIALS


If you would like me to make a bot for you, go here.

Offline

#2 2015-03-18 05:01:31

Xfrogman43
Member
From: need to find a new home
Joined: 2015-02-15
Posts: 4,174

Re: [Tutorial] TUTORIALS

Lol cursor is messed up. Good tutorial though. //forums.everybodyedits.com/img/smilies/smile


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#3 2015-03-18 05:05:42

BuzzerBee
Forum Admin
From: Texas, U.S.A.
Joined: 2015-02-15
Posts: 4,566

Re: [Tutorial] TUTORIALS

Is your cursor like that irl or just the video


TdQRyz3.png
https://wiki.everybodyedits.com/images/5/5d/135_bee

Offline

#4 2015-03-18 05:11:23

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

Re: [Tutorial] TUTORIALS

Just in videos


If you would like me to make a bot for you, go here.

Offline

#5 2015-03-18 15:26:58

912468
Member
Joined: 2015-02-21
Posts: 212
Website

Re: [Tutorial] TUTORIALS

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"...


vF0MA5o.png

Offline

#6 2015-03-18 19:00:31

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

Re: [Tutorial] TUTORIALS

912468 wrote:

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

Wooted by:

#7 2015-03-19 01:57:00

mochonoob
Member
Joined: 2015-03-19
Posts: 18

Re: [Tutorial] TUTORIALS

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?)

//forums.everybodyedits.com/img/smilies/tongue //forums.everybodyedits.com/img/smilies/cool


Add me on Teamviewer: [email protected]
      (Mochonoob)

2obrzyw.png

6gYIi2z.png

j3O2oM0.png

funny+avatar+01.gif

Offline

#8 2015-03-19 03:42:30, last edited by Lionhart (2015-03-19 03:42:43)

Lionhart
Member
Joined: 2015-02-17
Posts: 40

Re: [Tutorial] TUTORIALS

Wouldn't it be so much easier to just use your voice? ...like every other video tutorial?

Offline

#9 2015-03-19 03:48:36

FDOOU
Banned
Joined: 2015-03-05
Posts: 473

Re: [Tutorial] TUTORIALS

He's already been doxxed, he's got nothing left to lose by voicing them //forums.everybodyedits.com/img/smilies/big_smile //forums.everybodyedits.com/img/smilies/big_smile //forums.everybodyedits.com/img/smilies/big_smile


Come find me in game!

Offline

Wooted by: (2)

#10 2015-03-19 06:37:15

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

Re: [Tutorial] TUTORIALS

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

#11 2015-04-04 18:01:22

soulrunner
Member
Joined: 2015-03-10
Posts: 185

Re: [Tutorial] TUTORIALS

I get an error when using the Rot13 class, It say that it doesn't contain a definition for Transform.


l141.gif

Offline

#12 2015-04-04 18:45:55, last edited by Xfrogman43 (2015-04-04 18:47:45)

Xfrogman43
Member
From: need to find a new home
Joined: 2015-02-15
Posts: 4,174

Re: [Tutorial] TUTORIALS

Um it should. But if not, do this:
http://pastebin.com/Pj6tvNNx
then do derot(m.GetString(5));


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#13 2015-04-04 20:10:26, last edited by Jabatheblob1 (2015-04-04 20:19:43)

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

Re: [Tutorial] TUTORIALS

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

Wooted by: (2)

#14 2015-04-06 10:31:32

soulrunner
Member
Joined: 2015-03-10
Posts: 185

Re: [Tutorial] TUTORIALS

Could you do one of creating an admin list? Thanks in advance.


l141.gif

Offline

#15 2015-04-06 11:03:53

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

Re: [Tutorial] TUTORIALS

soulrunner wrote:

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

#16 2015-04-06 15:02:54

Srna
Member
Joined: 2015-02-26
Posts: 220

Re: [Tutorial] TUTORIALS

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!

Offline

#17 2015-04-06 23:46:36

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

Re: [Tutorial] TUTORIALS

soulrunner wrote:

Could you do one of creating an admin list? Thanks in advance.

Uploaded //forums.everybodyedits.com/img/smilies/smile


If you would like me to make a bot for you, go here.

Offline

#18 2015-04-07 11:40:31

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

Re: [Tutorial] TUTORIALS

Srna wrote:
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

#19 2015-04-08 03:43:13

shadowda
Member
From: somewhere probably.
Joined: 2015-02-19
Posts: 1,015

Re: [Tutorial] TUTORIALS

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       

latest?cb=20150604065609

Offline

Wooted by:

#20 2015-04-08 04:50:08

Xfrogman43
Member
From: need to find a new home
Joined: 2015-02-15
Posts: 4,174

Re: [Tutorial] TUTORIALS

You should learn SOME C# before trying to make bots.


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

Wooted by:

#21 2015-04-08 04:51:07

Jabatheblob1
Member
Joined: 2015-03-01
Posts: 856

Re: [Tutorial] TUTORIALS

Here Is a great channel for programming tutorials if you wanna learn how to program the basics in c#.


If you would like me to make a bot for you, go here.

Offline

Wooted by:

#22 2015-04-08 14:12:35

skullz17
Member
Joined: 2015-02-15
Posts: 6,697

Re: [Tutorial] TUTORIALS

This is one of my favourite websites for c# tutorials (if you prefer reading to watching a video).


m3gPDRb.png

thx for sig bobithan

Offline

Wooted by:

#23 2015-04-10 18:00:57

shadowda
Member
From: somewhere probably.
Joined: 2015-02-19
Posts: 1,015

Re: [Tutorial] TUTORIALS

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       

latest?cb=20150604065609

Offline

#24 2015-04-10 18:23:08, last edited by madiik (2015-04-10 18:23:52)

madiik
Member
From: floor above Yuuta
Joined: 2015-02-26
Posts: 514

Re: [Tutorial] TUTORIALS

http://forums.everybodyedits.com/viewtopic.php?id=27255

Zumza wrote:

its your code...

Create a successful "left" message tutorial.

shadowda wrote:

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

#25 2015-04-10 19:41:05

Srna
Member
Joined: 2015-02-26
Posts: 220

Re: [Tutorial] TUTORIALS

madiik wrote:

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)); }

//forums.everybodyedits.com/img/smilies/smile

Offline

Wooted by: (2)
John1501101454669737

Board footer

Powered by FluxBB

[ Started around 1711617734.4687 - Generated in 0.152 seconds, 12 queries executed - Memory usage: 1.84 MiB (Peak: 2.12 MiB) ]