LMF Posted November 17, 2011 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 27 Reputation: 0 Joined: 11/16/11 Last Seen: May 25, 2012 Share Posted November 17, 2011 Hi guys, i'm quite new here well i was wondering if this can be possible to do some src modification. LK, Berserk. After you cast berserk, you can't talk, skills, even commands. what if after cast berserk, you only can't do skills? talk and commands enable it. is that possible? Best regards, LMF Ragnarok Online. Quote Link to comment Share on other sites More sharing options...
0 Azeroth Posted February 3, 2017 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 383 Reputation: 121 Joined: 03/31/12 Last Seen: January 29, 2023 Share Posted February 3, 2017 On 12/12/2011 at 11:11 PM, rootKid said: i had tested this quite awhile back, and i can confirm that there is indeed a client block on it along with the server side things. hexing the client is required search: 03 C8 5f 89 4b 08 5e 5b replace: 03 C8 5f 90 90 90 5e 5b the code is buggy, you may notice why if you try it. also when searching you will find more than 1 result, just try them all until you get it. this was tested with an older client, not sure about renewal. note: this works assumings that you have already removed all the checks server side. Are you able to reproduced this in 2015+ Clients? Quote Link to comment Share on other sites More sharing options...
GodLesZ Posted November 17, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted November 17, 2011 (edited) I've attached a small diff. Its untested but removed the berserk check on talk-related functions. Let me know if it works. berserk_talkable.diff Edited November 17, 2011 by GodLesZ Quote Link to comment Share on other sites More sharing options...
LMF Posted November 17, 2011 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 27 Reputation: 0 Joined: 11/16/11 Last Seen: May 25, 2012 Author Share Posted November 17, 2011 (edited) i have a bit different compare with your diff, cause i'm using 3CeAM R650. if (sd->sc.count && //no "chatting" while muted. (sd->sc.data[sC_BERSERK] || (sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOCHAT) || (sd->sc.data[sC_DEEPSLEEP] && sd->sc.data[sC_DEEPSLEEP]->val2) || sd->sc.data[sC_SATURDAYNIGHTFEVER])) return -1; so it should be.. - (sd->sc.data[sC_BERSERK] || something like this only? Edited November 17, 2011 by LMF Quote Link to comment Share on other sites More sharing options...
GodLesZ Posted November 17, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted November 17, 2011 so it should be.. - (sd->sc.data[sC_BERSERK] || something like this only? Without the beginning (, yes. The block should be if (sd->sc.count && //no "chatting" while muted. ((sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOCHAT) || (sd->sc.data[sC_DEEPSLEEP] && sd->sc.data[sC_DEEPSLEEP]->val2) || sd->sc.data[sC_SATURDAYNIGHTFEVER])) return -1; Quote Link to comment Share on other sites More sharing options...
LMF Posted November 17, 2011 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 27 Reputation: 0 Joined: 11/16/11 Last Seen: May 25, 2012 Author Share Posted November 17, 2011 (edited) if (sd->sc.count && //no "chatting" while muted.((sd->sc.data[SC_NOCHAT] && sd->sc.data[SC_NOCHAT]->val1&MANNER_NOCHAT) || (sd->sc.data[SC_DEEPSLEEP] && sd->sc.data[SC_DEEPSLEEP]->val2) || sd->sc.data[SC_SATURDAYNIGHTFEVER])) return -1; can be this way? cause i see the starting should be in ((sd->sc.count && and end at fever])) Edited November 17, 2011 by LMF Quote Link to comment Share on other sites More sharing options...
KeyWorld Posted November 17, 2011 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 379 Reputation: 304 Joined: 11/10/11 Last Seen: December 2, 2014 Share Posted November 17, 2011 If I remember correctly it's also a client issue (the client avoid to send talk packet to server when you are berserk) Quote Link to comment Share on other sites More sharing options...
LMF Posted November 17, 2011 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 27 Reputation: 0 Joined: 11/16/11 Last Seen: May 25, 2012 Author Share Posted November 17, 2011 ridiculous.. will test it out ^.^ Quote Link to comment Share on other sites More sharing options...
GodLesZ Posted November 17, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted November 17, 2011 if (sd->sc.count && //no "chatting" while muted.((sd->sc.data[SC_NOCHAT] && sd->sc.data[SC_NOCHAT]->val1&MANNER_NOCHAT) || (sd->sc.data[SC_DEEPSLEEP] && sd->sc.data[SC_DEEPSLEEP]->val2) || sd->sc.data[SC_SATURDAYNIGHTFEVER])) return -1; can be this way? cause i see the starting should be in ((sd->sc.count && and end at fever])) Yep, here the same a bit better: // No "chatting" while muted if ( sd->sc.count && ( (sd->sc.data[sC_NOCHAT] && sd->sc.data[sC_NOCHAT]->val1&MANNER_NOCHAT) || (sd->sc.data[sC_DEEPSLEEP] && sd->sc.data[sC_DEEPSLEEP]->val2) || sd->sc.data[sC_SATURDAYNIGHTFEVER] ) ) return -1; If I remember correctly it's also a client issue (the client avoid to send talk packet to server when you are berserk) Strange if so. But yea, this sounds like Gravity Quote Link to comment Share on other sites More sharing options...
Mercurial Posted November 18, 2011 Group: Members Topic Count: 15 Topics Per Day: 0.00 Content Count: 241 Reputation: 46 Joined: 11/08/11 Last Seen: January 5, 2019 Share Posted November 18, 2011 another reason for a open source client XD 2 Quote Link to comment Share on other sites More sharing options...
GodLesZ Posted November 18, 2011 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 186 Reputation: 51 Joined: 11/14/11 Last Seen: January 21, 2015 Share Posted November 18, 2011 another reason for a open source client XD Lets see how KeyWorld's roBrowser comes up. @LMF: Any results on testing yet? Quote Link to comment Share on other sites More sharing options...
rootKid Posted December 13, 2011 Group: Members Topic Count: 24 Topics Per Day: 0.00 Content Count: 83 Reputation: 11 Joined: 11/28/11 Last Seen: March 31, 2024 Share Posted December 13, 2011 (edited) i had tested this quite awhile back, and i can confirm that there is indeed a client block on it along with the server side things. hexing the client is required search: 03 C8 5f 89 4b 08 5e 5b replace: 03 C8 5f 90 90 90 5e 5b the code is buggy, you may notice why if you try it. also when searching you will find more than 1 result, just try them all until you get it. this was tested with an older client, not sure about renewal. note: this works assumings that you have already removed all the checks server side. Edited December 13, 2011 by kou 1 Quote Link to comment Share on other sites More sharing options...
QQfoolsorellina Posted December 13, 2011 Group: Members Topic Count: 40 Topics Per Day: 0.01 Content Count: 587 Reputation: 105 Joined: 11/19/11 Last Seen: July 7, 2019 Share Posted December 13, 2011 Can you tell us what is your client date? Quote Link to comment Share on other sites More sharing options...
rootKid Posted December 22, 2011 Group: Members Topic Count: 24 Topics Per Day: 0.00 Content Count: 83 Reputation: 11 Joined: 11/28/11 Last Seen: March 31, 2024 Share Posted December 22, 2011 sorry for the delay, had to find out. 2008-09-10aSakexe is the exe that i got it to work on Quote Link to comment Share on other sites More sharing options...
Question
LMF
Hi guys, i'm quite new here
well i was wondering if this can be possible to do some src modification.
LK, Berserk.
After you cast berserk, you can't talk, skills, even commands.
what if after cast berserk, you only can't do skills? talk and commands enable it.
is that possible?
Best regards,
LMF Ragnarok Online.
Link to comment
Share on other sites
13 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.