Hey again :P
I know waht MUD is. It is text base online game. Something like Ogame or Travian and stuf like that. MMORPG game is online game with graphics like
Guild Wars or World of Warcraft.
I want to know is the writen code of MUD simular to MMORPG? Because they should be, the diffrence is only that MUD does not use graphic while MMORPG is using it. If you have code from Ogame for example and use that same code together with graphic would it be possble ?
Thanks :D
Difference between MUD and MMORPG
Moderator: PC Supremacists
-
- Chaos Rift Newbie
- Posts: 30
- Joined: Sat Dec 19, 2009 5:00 pm
- Favorite Gaming Platforms: PS3
- Programming Language of Choice: C#
- Location: Bosnia and Herzegovina
Difference between MUD and MMORPG
"There is nothing either good or bad, but our thinking makes it so"
- Milch
- Chaos Rift Junior
- Posts: 241
- Joined: Sat Jul 11, 2009 5:55 am
- Programming Language of Choice: C++
- Location: Austria, Vienna
Re: Difference between MUD and MMORPG
I dont know exactly what a MUD is - but from the games you named, all of them are not realtime.
WoW,Guildwars -> realtime
Ogame,Travian -> not realtime
So it isnt possible.
WoW,Guildwars -> realtime
Ogame,Travian -> not realtime
So it isnt possible.
Follow me on twitter!
-
- Chaos Rift Cool Newbie
- Posts: 69
- Joined: Sat Dec 12, 2009 8:43 pm
- Programming Language of Choice: C/C++
- Location: United States
- Contact:
Re: Difference between MUD and MMORPG
MUD stands for Multi-User Dungeon, which is basically a text-based multi-player RPG game that is generally played through a MUD client (or defaults to Telnet).
I used to play them... a lot. Check out this article for a more descriptive analysis of a multi-user dungeon.
(read article)
I used to play them... a lot. Check out this article for a more descriptive analysis of a multi-user dungeon.
(read article)
- Lord Pingas
- Chaos Rift Regular
- Posts: 178
- Joined: Thu Dec 31, 2009 9:33 am
- Favorite Gaming Platforms: NES, SNES, Nintendo 64, Dreamcast, Wii
- Programming Language of Choice: C++
- Location: Hiding In My Mum's Basement With My Pokemon Cards
Re: Difference between MUD and MMORPG
I think there would be difference compared to a text based RPG and a graphics RPG...
You got to deal with you all your rendering which is obviously a pain in the ass when writing a game engine. You would have to write a level editor to put the graphics where you want unless you want to do it the "hard" way and write it all in a .txt file. And many other things :P
You got to deal with you all your rendering which is obviously a pain in the ass when writing a game engine. You would have to write a level editor to put the graphics where you want unless you want to do it the "hard" way and write it all in a .txt file. And many other things :P
- short
- ES Beta Backer
- Posts: 548
- Joined: Thu Apr 30, 2009 2:22 am
- Current Project: c++, c
- Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
- Programming Language of Choice: c, c++
- Location: Oregon, US
Re: Difference between MUD and MMORPG
There is definitely a difference, I spent some time developing for an open-source server emulator for WoW. I did it for the learning experience, because, I was interested in how modern day mmo's were written. My point is, you spend all your time passing information, nothing about graphics. Most of that is handled via client. So, if you were willing to redo all the code from turn based to real-time, I think it could work. You would just have to update your clients with graphics, and your server to handle said client with new graphics.Lord Pingas wrote:I think there would be difference compared to a text based RPG and a graphics RPG...
You got to deal with you all your rendering which is obviously a pain in the ass when writing a game engine. You would have to write a level editor to put the graphics where you want unless you want to do it the "hard" way and write it all in a .txt file. And many other things :P
Would I do it that way though? Probably not. Huge pain in the ass in my opinion, but I do think it is possible.
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
link: https://github.com/bjadamson
- Joeyotrevor
- Chaos Rift Cool Newbie
- Posts: 62
- Joined: Thu Jan 22, 2009 6:24 pm
- Programming Language of Choice: C++
Re: Difference between MUD and MMORPG
In MUDs, you pretty much send everything you want the client to see on their screen to the client, stuff like room descriptions, notifications, etc. In a graphical networked game, you send the client data like player positions which the client keeps track of to draw models/sprites.
Code: Select all
eb 0c 48 65 6c 6c 6f 20 77 6f 72 6c 64 21 31 d2 8e c2 30 ff b3 0a bd 02 7c b9 0b 00 b8 00 13 cd 10 eb fe
Re: Difference between MUD and MMORPG
Ask MarauderIIC, he has some experience coding MUDs or an MUD... IDK which :D