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.

#126 2016-07-30 07:31:25

Gokublack
Member
Joined: 2016-07-29
Posts: 9

Re: [Tutorial] TUTORIALS

I don't get any errors when I run the program but how do I check for errors then?

I don't know what you mean by adding ondisconnect.

Sorry for too many questions.

Offline

#127 2016-07-30 07:56:20

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

Re: [Tutorial] TUTORIALS

i can make some more, if anyone wants to pm me or something so i can get caught up on all the tedious updates, then i can make a lot of tutorials. I need to refresh some stuff for later this year any ways. I'd be willing to post them to youtube again, and remake some old ones so that they are updated as well, i can start as soon as i get the new update info. Someone just pm me or message me on tv //forums.everybodyedits.com/img/smilies/tongue


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

Offline

#128 2016-07-30 08:11:08, last edited by capasha (2016-07-30 08:18:01)

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

Re: [Tutorial] TUTORIALS

Gokublack wrote:

I don't get any errors when I run the program but how do I check for errors then?

I don't know what you mean by adding ondisconnect.

Sorry for too many questions.

Something like this, http://pastebin.com/P4NDCYXc


Jabatheblob1 wrote:

i can make some more, if anyone wants to pm me or something so i can get caught up on all the tedious updates, then i can make a lot of tutorials. I need to refresh some stuff for later this year any ways. I'd be willing to post them to youtube again, and remake some old ones so that they are updated as well, i can start as soon as i get the new update info. Someone just pm me or message me on tv //forums.everybodyedits.com/img/smilies/tongue

This time, don't use copyrighted music.

Offline

#129 2016-07-30 08:29:58

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

Re: [Tutorial] TUTORIALS

capasha wrote:

Something like this, http://pastebin.com/P4NDCYXc

you can do conn.OnDisconnect += (then press tab twice) and it auto fills for you.


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#130 2016-07-30 09:17:02, last edited by capasha (2016-07-30 09:17:26)

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

Re: [Tutorial] TUTORIALS

Xfrogman43 wrote:
capasha wrote:

Something like this, http://pastebin.com/P4NDCYXc

you can do conn.OnDisconnect += (then press tab twice) and it auto fills for you.

I know. But I prefer delegate more.

Offline

#131 2016-07-30 14:06:14

Calyfornia
Member
From: Scotland
Joined: 2016-07-09
Posts: 41

Re: [Tutorial] TUTORIALS

capasha wrote:
Xfrogman43 wrote:
capasha wrote:

Something like this, http://pastebin.com/P4NDCYXc

you can do conn.OnDisconnect += (then press tab twice) and it auto fills for you.

I know. But I prefer delegate more.

You sure? //forums.everybodyedits.com/img/smilies/tongue
OsNc7lj.png


EENeat | Teaches itself how to play EE (Made in partnership with Jesse)
Rider   | Cross-platform, alternative C# IDE by JetBrains.

Offline

#132 2016-07-30 14:47:54

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

Re: [Tutorial] TUTORIALS

I feel like making one that covers the basics of how to use VS, what we have for our community of sorts, and the basic structure. After that, everything they want to do, they need to learn, but will probably mooch anyway. At least once you cover the basics, it simply becomes 'how well do you know c#?'

Offline

Wooted by:

#133 2016-07-30 17:54:54, last edited by capasha (2016-07-30 17:58:18)

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

Re: [Tutorial] TUTORIALS

Calyfornia wrote:
capasha wrote:
Xfrogman43 wrote:
capasha wrote:

Something like this, http://pastebin.com/P4NDCYXc

you can do conn.OnDisconnect += (then press tab twice) and it auto fills for you.

I know. But I prefer delegate more.

You sure? //forums.everybodyedits.com/img/smilies/tongue
http://i.imgur.com/OsNc7lj.png

There is 12 delegates because the code is showed with syntax highlighting and one without.

Still confused what you are trying to tell me.

Blackmask wrote:

Can you make a tutorial for making a ban list ? thanks :d

If you know how to read and write to a file, and also using lists you could do this self.
You only need to check if a username is in the list from "add" and kick him.

Offline

Wooted by:

#134 2016-07-31 05:15:01, last edited by Gokublack (2016-07-31 05:23:11)

Gokublack
Member
Joined: 2016-07-29
Posts: 9

Re: [Tutorial] TUTORIALS

I don't know if I did it right but here's the edited code: /kqQgWWe2
It still doesn't work. I also came across this: playerio.com/forum/viewtopic.php?f=4&t=35903
Maybe hummerz5 is right and it is not the code but my internet connection.

I may be able to try with another internet connection soon.

Offline

#135 2016-07-31 05:34:15, last edited by Xfrogman43 (2016-07-31 05:34:51)

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

Re: [Tutorial] TUTORIALS

Gokublack wrote:

I don't know if I did it right but here's the edited code: /kqQgWWe2

Where it says,

void conn_OnDisconnect(object sender, string message)
        {
            throw new NotImplementedException();
        }

change it to:

void conn_OnDisconnect(object sender, string message)
        {
            MessageBox.Show(message);
        }

then tell me what happens, if anything.


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#136 2016-07-31 05:59:08

Gokublack
Member
Joined: 2016-07-29
Posts: 9

Re: [Tutorial] TUTORIALS

I did and nothing happens.

Offline

#137 2016-07-31 07:39:33

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

Re: [Tutorial] TUTORIALS

Maybe it is your connection then. Let us know when you get new connection if it's any better.


zsbu6Xm.png thanks zoey aaaaaaaaaaaand thanks latif for the avatar

Offline

#138 2016-07-31 13:15:13, last edited by capasha (2016-07-31 13:35:39)

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

Re: [Tutorial] TUTORIALS

Still no error checkings on login and connect. The reason you don't know why the code doesn't work.
If you don't want to use delegate, use this. http://pastebin.com/51tEHZds

Offline

#139 2016-07-31 20:30:04, last edited by Gokublack (2016-08-01 03:20:44)

Gokublack
Member
Joined: 2016-07-29
Posts: 9

Re: [Tutorial] TUTORIALS

Sorry, I thought you meant I should add only the ondisconnect part. Is not that I don't want to use it. I'll try both codes now.

Edit: The first code you posted with delegates worked. I can see the bot! The second one didn't. I'll now edit the first code so that it works with the Tutorials window.
Edit 2: I edited the code and it didn't work but then I thought it was the connect_Button not working and that was it. *facepalm* I must have missed a step in the tutorial or something. The code provided by Xfrogman43 and the one from the tutorial work too. Well, thanks all for your help. //forums.everybodyedits.com/img/smilies/smile
Edit 3: I want to do tutorial 2 but is it functional? In the last page I read you use "b" instead of bldatam, is that the only thing that changes?

Offline

#140 2016-10-12 19:18:52

Blackmask
Member
From: France
Joined: 2016-06-27
Posts: 199

Re: [Tutorial] TUTORIALS

Why did the videos doesn't work ?

Offline

#141 2016-10-12 19:39:00

Myst
Guest

Re: [Tutorial] TUTORIALS

Blackmask wrote:

Why did the videos doesn't work ?

some viedos are blocked in USA

#142 2016-10-12 21:19:58

Vinyl Melody
Formerly BananaMilkShake
Joined: 2016-06-19
Posts: 616

Re: [Tutorial] TUTORIALS

OR jabatheblob1 is re-making the tutorials and deleted all of the old vids.


cb0de83627.png
Thanks to: Ernesdo (Current Avatar), Zoey2070 (Signature)

Very inactive, maybe in the future, idk.

Offline

#143 2016-10-12 21:21:36

MartenM
Member
From: The Netherlands
Joined: 2016-03-31
Posts: 970
Website

Re: [Tutorial] TUTORIALS

BananaMilkShake wrote:

OR jabatheblob1 is re-making the tutorials and deleted all of the old vids.

Than it's taking a very long time.


lm3hgg8.jpg

Ingame: marten22        My steam: MartenM

Offline

#144 2016-10-13 15:58:48

Blackmask
Member
From: France
Joined: 2016-06-27
Posts: 199

Re: [Tutorial] TUTORIALS

I cant find his channel :c

Offline

#145 2016-10-13 16:13:52

Myst
Guest

Re: [Tutorial] TUTORIALS

Blackmask wrote:

I cant find his channel :c

he have maybe setting the channel options

#146 2016-10-14 01:53:17

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

Re: [Tutorial] TUTORIALS

I've stopped making videos cause no one is on ee anymore.


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

Offline

Wooted by:

#147 2016-10-14 02:49:27

N1KF
Wiki Mod
From: ဪဪဪဪဪ From: ဪဪဪဪဪ From: ဪဪဪဪဪ
Joined: 2015-02-15
Posts: 11,103
Website

Re: [Tutorial] TUTORIALS

Jabatheblob1 wrote:

I've stopped making videos cause no one is on ee anymore.

If nobody is playing the game, why are there dozens of players online at a time?

Online

#148 2016-10-14 03:01:25

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

Re: [Tutorial] TUTORIALS

N1KF wrote:
Jabatheblob1 wrote:

I've stopped making videos cause no one is on ee anymore.

dozens


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

Offline

Wooted by:

#149 2016-10-14 03:02:02

N1KF
Wiki Mod
From: ဪဪဪဪဪ From: ဪဪဪဪဪ From: ဪဪဪဪဪ
Joined: 2015-02-15
Posts: 11,103
Website

Re: [Tutorial] TUTORIALS

Jabatheblob1 wrote:
N1KF wrote:
Jabatheblob1 wrote:

I've stopped making videos cause no one is on ee anymore.

dozens

"Dozens" isn't equal to "no one"?

Online

#150 2016-10-14 03:05:50

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

Re: [Tutorial] TUTORIALS

N1KF wrote:
Jabatheblob1 wrote:
N1KF wrote:
Jabatheblob1 wrote:

I've stopped making videos cause no one is on ee anymore.

dozens

"Dozens" isn't equal to "no one"?

There use to be thousands of people playing this game. It's just old. I don't find it productive.


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

Offline

John1501101454669737

Board footer

Powered by FluxBB

[ Started around 1714364152.4111 - Generated in 0.061 seconds, 10 queries executed - Memory usage: 1.78 MiB (Peak: 2.03 MiB) ]