Register for your free account! | Forgot your password?

Go Back   elitepvpers > Popular Games > Silkroad Online > SRO Coding Corner
You last visited: Today at 07:59

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[C#]need help on network programing

Discussion on [C#]need help on network programing within the SRO Coding Corner forum part of the Silkroad Online category.

Closed Thread
 
Old   #1
 
elite*gold: 0
Join Date: Jul 2008
Posts: 112
Received Thanks: 10
[C#]need help on network programing

i need reference for methods [codes] which i can send , receive and parse packets Iam not good in C# i learned and understood the logic of packets but i already don't how to send packet
and i looked on projects like zbot src and couldn't understand it
BTW:sry for bad English
kondos is offline  
Old 11/14/2012, 17:01   #2
 
elite*gold: 0
Join Date: Jan 2009
Posts: 314
Received Thanks: 686
You should learn C# first before working with network or packet related stuff. As soon as you're familiar with the language you could start doing simple network things.
DaxterSoul is offline  
Old 11/15/2012, 21:02   #3
 
elite*gold: 0
Join Date: Jul 2008
Posts: 112
Received Thanks: 10
my problem that i am depended on copy and paste

anyone know a good ebook to star from it
kondos is offline  
Old 11/17/2012, 09:10   #4
 
elite*gold: 130
Join Date: Mar 2008
Posts: 2,485
Received Thanks: 934
Well, I had no luck in self-teaching in C#. I'm a student of a college at the moment, I'm beight taught computer programming. It's hard even like this..
intercsaki is offline  
Old 11/18/2012, 10:55   #5
 
lesderid's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 2,400
Received Thanks: 1,517
C# is really easy to learn actually.

Great tutorials:
(net-tutorials.com)
(MSDN)
(csharp-station.com)

Other great resources:


: Not free and pretty advanced, but *great* book. Certainly a must-read if you are interested in more advanced C#.
lesderid is offline  
Thanks
1 User
Old 11/23/2012, 18:00   #6
 
elite*gold: 130
Join Date: Mar 2008
Posts: 2,485
Received Thanks: 934
Quote:
Originally Posted by lesderid View Post
C# is really easy to learn actually.

Great tutorials:
(net-tutorials.com)
(MSDN)
(csharp-station.com)

Other great resources:


: Not free and pretty advanced, but *great* book. Certainly a must-read if you are interested in more advanced C#.

Well probably easy who haven't started learning programming 4 months ago.
intercsaki is offline  
Thanks
1 User
Old 03/28/2013, 19:32   #7
 
elite*gold: 0
Join Date: Mar 2013
Posts: 55
Received Thanks: 4
Quote:
Originally Posted by intercsaki View Post
Well probably easy who haven't started learning programming 4 months ago.
Programming isnt hard at all. If youre going to start learning physics for example, thats hard. Programming is just like playing with lego.^^ Ofc making fast, powerful algorithms are harder, but thats mathematics and not programming. Also implementing easy things like sro-coding for a ****-sapiens should take some days. You could learn a programming language in 2 days if you want^^
miamidolphin is offline  
Old 03/28/2013, 19:44   #8
 
elite*gold: 0
Join Date: May 2011
Posts: 669
Received Thanks: 407
Quote:
Originally Posted by miamidolphin View Post
Programming isnt hard at all. If youre going to start learning physics for example, thats hard. Programming is just like playing with lego.^^ Ofc making fast, powerful algorithms are harder, but thats mathematics and not programming. Also implementing easy things like sro-coding for a ****-sapiens should take some days. You could learn a programming language in 2 days if you want^^
I highly doubt this. I have a little experience in programming, and I just started learning C (I will do it slowly, since we have Basics of Programming in college, and we're learning C, so I'll learn there), and I know that I wouldn't be able to learn to program in C as good as I am in Pascal and Delphi (don't laugh at me ) in 2 days. It takes time to get used to it. For the programming beginners it's even harder, because they don't have that programmer's way of thinking.
Bartic is offline  
Old 03/28/2013, 22:43   #9
 
lesderid's Avatar
 
elite*gold: 0
Join Date: Dec 2007
Posts: 2,400
Received Thanks: 1,517
Quote:
Originally Posted by Bartic View Post
I highly doubt this. I have a little experience in programming, and I just started learning C (I will do it slowly, since we have Basics of Programming in college, and we're learning C, so I'll learn there), and I know that I wouldn't be able to learn to program in C as good as I am in Pascal and Delphi (don't laugh at me ) in 2 days. It takes time to get used to it. For the programming beginners it's even harder, because they don't have that programmer's way of thinking.
Most popular modern high-level programming languages have very similar concepts regarding common programming techniques like OOP (including templating, polymorphism, etc.), recursion, loops, etc. Every programming language of course has a different syntax and often a specific domain it's made for (general programming, AI programming, scripting, etc.).

However, what I personally think is the hardest part about learning a new programming language, is learning all the library types and functions that come with it (e.g. C++'s standard library, C#'s/VB.Net's .Net, Java's API, etc.).
lesderid is offline  
Old 03/28/2013, 23:20   #10
 
elite*gold: 0
Join Date: Dec 2008
Posts: 316
Received Thanks: 44
Quote:
Originally Posted by kondos View Post
i need reference for methods [codes] which i can send , receive and parse packets Iam not good in C# i learned and understood the logic of packets but i already don't how to send packet
and i looked on projects like zbot src and couldn't understand it
BTW:sry for bad English
You can do it in every language you want...

First of all, you have to get familiar with Silkroads packet framework. Read some articles or use other information sources, it should not be that hard to understand the basic idea of the framework.

I can refer the SilkroadSecurity API by Drew Benton aka PushEDX.
Unfortunately but that would be an very easy way to understand it.
XchangliiX is offline  
Old 03/29/2013, 19:31   #11

 
Haxor's Avatar
 
elite*gold: 0
Join Date: Feb 2008
Posts: 3,777
Received Thanks: 1,455
Well i would be happy if i can get the same,
Im learning c# from many time and i have alot of graphics games (such as mario, space) and that games.I tried to learn parsing packets from sources and
other stuff but I failed .
Haxor is offline  
Old 03/29/2013, 22:07   #12
 
elite*gold: 0
Join Date: May 2011
Posts: 669
Received Thanks: 407
Quote:
Originally Posted by lesderid View Post
Most popular modern high-level programming languages have very similar concepts regarding common programming techniques like OOP (including templating, polymorphism, etc.), recursion, loops, etc. Every programming language of course has a different syntax and often a specific domain it's made for (general programming, AI programming, scripting, etc.).

However, what I personally think is the hardest part about learning a new programming language, is learning all the library types and functions that come with it (e.g. C++'s standard library, C#'s/VB.Net's .Net, Java's API, etc.).
Yeah, that's what I said, "programer's way of thinking".
And yeah, libraries are the hardest thing to learn about new language. You can learn syntax in a few days, but you won't be "fluent" in that new programming language.
Bartic is offline  
Old 03/30/2013, 20:04   #13
 
kevin_owner's Avatar
 
elite*gold: 0
Join Date: Jan 2010
Posts: 1,484
Received Thanks: 809
Quote:
Originally Posted by ™Haxor™ View Post
Well i would be happy if i can get the same,
Im learning c# from many time and i have alot of graphics games (such as mario, space) and that games.I tried to learn parsing packets from sources and
other stuff but I failed .
You'll have to learn to crawl before you can walk. I made the same rookie mistake when I started programming. First language I learned was C++. Not the greatest choice imo. But once I started to use C# more often and felt comfortable with it I wanted too much too fast. I didn't know any socket/network programming I had no idea how stuff was send from pc to server and grabbed a few sources of emulators and just quit since I had no idea what the hell everything was.

Best way to tackle this is too actually start with the beginning learn what a socket is and how it works. How does networking work in general stuff like that. It might not be the most fun to do but in the end you'll have a better understanding of what everything is.

It's like those getting started programming books. You start off with printing a bunch of signs in a console but halfway trough the book you still print the same **** signs but the logic behind is different. At first this looks like a complete waste of your time but in the end it totally wasn't and it'll surely help you.
kevin_owner is offline  
Thanks
4 Users
Closed Thread


Similar Threads Similar Threads
Programing - Help me =D
08/15/2011 - DarkOrbit - 2 Replies
Hello everyone, I come here to ask you some advice, because I am entering in the programming, but do not know much about her, I know a few things CSS and HTML, however I want to delve into the branch, would have the opportunity to start with you here in forum? where to start and how to create a bot, know what I have to pick up the game and I can create = D First I would like some tips on how I can do a basic program to show the mini-map as the kbot and the iBOT, so try and build a little...
Help Programing
03/31/2011 - CO2 Private Server - 2 Replies
Hello all, I have some qeustions I em new in here (Programing) And got this problem When i edit etinities.cs in powersource co (StealSerer pack) and save it open up my game And test my edits nothing happen Bv. i edit drop rate and start game evrything is just the same
[Programing] what is the best programing launguage
10/31/2010 - CO2 Programming - 19 Replies
hi i am willing to learn a new programming launguage to create bots witch i will post for free useing so if you can please tell me what is the best one to learn i will start learning it as soon as possible i allready know a bit about VB
new to programing
12/20/2008 - Cabal Hacks, Bots, Cheats, Exploits & Macros - 0 Replies
first of all, i want to thank you all for the help you got me from other threads. now i would like to ask something... no i don't want bots or hacks made from anyone... i just want a little advice in something. to know about programing a bypass for gameguard or to make a bot which programs, coder or programing books i should look to?? i mean, should i look for auto it to make a bot? should i try c++ programing? if theres someone who could help me with knowing more about programing...
Help for Programing a bot
04/01/2008 - Conquer Online 2 - 0 Replies
Well, i want to make a bot for CO, but i need some help. I don't know if it's better to take the packets that send conquer server, and manipulate it; or find the memory address and change the values when i need it. Well, in addition, i have a question. Always the system assigned the same memory address for the game? For example, if i use the "odbg", and i find that the memory address for the player name is "x", always "x" have the player name? Well, i need some help. I don't need that...



All times are GMT +1. The time now is 08:01.


Powered by vBulletin®
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2026 elitepvpers All Rights Reserved.