Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

About chat/trade akkan with human

Skilled Illusionist
Joined
Jan 15, 2009
Messages
332
Reaction score
11
Hello all!
Anyone know how to change the trade/chat system between humans and akkans? Normal way, akkans cant trade/chat with humans. How to enable this? Someone can help?
 
Initiate Mage
Joined
Jul 8, 2014
Messages
17
Reaction score
0
If I were you I would look at how GM's can accomplish this task and then do the same for normal players.

Probably a simple assembly change ;)
 
Initiate Mage
Joined
Jul 8, 2014
Messages
17
Reaction score
0
So what you're really asking for is for someone to do the entire thing for you...? I just gave you a set of usable instructions... If you try and use some common sense you should be able to do it yourself. Make sure the exe is unpacked also -.-.
 
Skilled Illusionist
Joined
Jan 15, 2009
Messages
332
Reaction score
11
Im not asking to anyone do it for me....I just asking, if someone already did this change...And if the guy is a good guy, can share your knowledge with all, like a lot of other guys that contribute with this forum. Do you know the meaning of a RELEASE/HELP/ and other forums?...If not a good guy, sure he will keep like a "secret".... To start all, if Alphaest, was a bad guy, we will never KNOW what ryl coder is..and a lot of other things...He release rmap, and rsec already....

Some examples of guys that contributed a lot with RYL community:
http://forum.ragezone.com/f564/rsec-3-0-ryl-server-1018450/
http://forum.ragezone.com/f564/row-client-files-reupload-987824/
http://forum.ragezone.com/f564/liteflashryl-test-641225/
http://forum.ragezone.com/f564/release-ryl-v1700-pvp-zone-1042557/
http://forum.ragezone.com/f564/gems-857817/
http://forum.ragezone.com/f564/wow-web-copy-buas-782173/
And so many others...
 
Last edited:
Initiate Mage
Joined
Jul 8, 2014
Messages
17
Reaction score
0
That's not what I'm saying. Helping is good, I just helped you. But you seem to not want to try and do it yourself. I gave you enough information for you to figure out how to do it, maybe even learn a few things so you don't need to ask questions like this...

Not sure why you brought up that fact at all. Anyways, I gave you what you need. It's up to you to use the information I gave you or just refuse (as you're doing now) to accept it and continue waiting for something that more than likely someone won't just give you.
 
Skilled Illusionist
Joined
Jan 15, 2009
Messages
332
Reaction score
11
I know Kid Buu, any kind of help is always good...But srry, im not pro in assembly...And btw, what do you mean with "GM's can accomplish this task "
? And you mean that is an easy assembly in client.exe, or gameserver.exe?
 
Initiate Mage
Joined
May 13, 2012
Messages
20
Reaction score
0
:D
Bro, he meant GMs can talk to both akkans and human using /cz command, right?
So, with that in mind, you can look at the assembly (which I'm not good at it too, so I'm not keeping it secret from you) and observing, studying how the /cz command works, you can figure out how to implemente it on /c or /e).

But remeber, not saying exactly what you expect didn't mean keeping it secret, maybe he just didn't do it by himself, but he understand how it can be done and is explaining it to you.

Ps: It is probably on gameserver.
 
Initiate Mage
Joined
Jul 8, 2014
Messages
17
Reaction score
0
Correct. I am not so sure that it is on the game server. (With most logic, it should be on Game Server)..


However, what more than likely happens is the server sends ALL chat to EVERYONE. Then the client decides if the message should be seen or not based on the current characters race. This makes the server have to do one less check....

Personally I'd check the Client.exe first.
 
Initiate Mage
Joined
May 13, 2012
Messages
20
Reaction score
0
If by DB you meant Database, the answer is No.
And as KidBuu has brought up, it makes more sense to be on Client.
So, on Client, I would look for something like this (in high-tier language):
Code:
if (ReceivedUDP.Command == "/cz") 
      print(ReceivedUDP.Message); // because doesn't matter who is receiving, it will broadcast in any way.
if (ReceivedUDP.Command == "/e")
{
      if (ReceivedUDP.Nation == Client.Nation)
            print(ReceivedUDP.Message);
}
// ReceivedUDP would be a struct containing data sent by gameserver.
If I found something like this, I would just remove that Nation check condition and all messages using /e command would be broadcasted to both nations, like on /cz command.

The problem is, how to look for something like that in assembly? I have no idea, yet... :D
 
Initiate Mage
Joined
Dec 17, 2012
Messages
12
Reaction score
2
I made ​​a deal With kaito daumoto where I paid the amount of $ 30 for some feature as trade human & Akkan , party fame up per member until this day the now does not,him don't respond imbox and change you name on fb
 
Initiate Mage
Joined
Dec 17, 2012
Messages
12
Reaction score
2
him change her name on fb check if wan
 

Attachments

You must be registered for see attachments list
Back
Top