Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 37
  1. #16
    FainTMako's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    332
    Reputation
    10
    Thanks
    244
    My Mood
    Inspired
    generally. i just died tonight with my 6/8 its not perfect i got hit at by avatar. i think it may have been a 1 shot or lag but either way i tp'd to him and bam it was fast not fast enuf to nexus im afraid.

  2. #17
    059's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    California
    Posts
    3,312
    Reputation
    700
    Thanks
    92,771
    Quote Originally Posted by The_En|D View Post
    If i understood that right, if u are at O2 and theres his shotgun directly coming to you and would kill you this script nexuses before it hits?
    I'm pretty sure, yeah. It predicts incoming damage. It can't save you every time but it works a lot better than a simple
    if(currentHealth/maxHealth < 0.25)
    nexus();
    My Vouches
    Having an issue with RotMG? Check for the solution here.


    Need Realm items? Come to RealmStock!

    Accepting PayPal - Bitcoin - Giftcards
    Selling ST Sets, Class Top Sets, Life Pots, and much more!


    Find it here: MPGH Sales Thread

  3. #18
    FainTMako's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    332
    Reputation
    10
    Thanks
    244
    My Mood
    Inspired
    from my experience nothing can save u from a 1 shot

  4. #19
    rocker1988's Avatar
    Join Date
    Sep 2006
    Gender
    male
    Posts
    301
    Reputation
    10
    Thanks
    62
    My Mood
    Doubtful
    Quote Originally Posted by 059 View Post
    I'm pretty sure, yeah. It predicts incoming damage. It can't save you every time but it works a lot better than a simple
    if(currentHealth/maxHealth < 0.25)
    nexus();
    There is also an option you can edit inside this script that tells RealmRelay how much defense you have added to your defense as a whole from your armor/rings/ability

    If you have this value set too high, for example the knight having extra def from his shield and you go to use a wizard or any class that has alot less additional defense than a knight then RR will automatically think your character has ALOT more HP than you really do

    If you set it too low then RR thinks you have ALOT less HP than you really do and will start auto nexus'ing you on just about every hit you take

     
    var STATDATA_DEFENCEBONUS = 22
    Last edited by rocker1988; 12-31-2013 at 10:14 AM.

  5. #20
    fuckyoutwo's Avatar
    Join Date
    Nov 2013
    Gender
    female
    Posts
    25
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by rocker1988 View Post
    There is also an option you can edit inside this script that tells RealmRelay how much defense you have added to your defense as a whole from your armor/rings/ability

    If you have this value set too high, for example the knight having extra def from his shield and you go to use a wizard or any class that has alot less additional defense than a knight then RR will automatically think your character has ALOT more HP than you really do

    If you set it too low then RR thinks you have ALOT less HP than you really do and will start auto nexus'ing you on just about every hit you take

     
    var STATDATA_DEFENCEBONUS = 22
    Dude, dont spread erronious information. STATDATA_DEFENCEBONUS is used to look up your defense as the server sends it, if you change it you will look up something else. For exaple, current health is 1

  6. #21
    FainTMako's Avatar
    Join Date
    Nov 2013
    Gender
    male
    Posts
    332
    Reputation
    10
    Thanks
    244
    My Mood
    Inspired
    changing the defence bonus made a hell of a difference to me. can you show me where its grabbing your def bonus?
    If you look through the script its doing a comparision of your def bonus to statData.obf0

    did you try changing the values yourself before you said someone was wrong?
    Look through the script sir.

  7. #22
    fuckyoutwo's Avatar
    Join Date
    Nov 2013
    Gender
    female
    Posts
    25
    Reputation
    10
    Thanks
    12
    Quote Originally Posted by FainTMako View Post
    changing the defence bonus made a hell of a difference to me. can you show me where its grabbing your def bonus?
    If you look through the script its doing a comparision of your def bonus to statData.obf0

    did you try changing the values yourself before you said someone was wrong?
    Look through the script sir.
    Code:
    function onServerPacket(event) {
    ...
    		case ID_NEW_TICK: {
    ...
    						} else if (statData.obf0 == STATDATA_DEFENCEBONUS) {
    							defenceBonus = statData.obf1;
    ...
    sets defenceBonus to your actual defencebonus if obf0 is STATDATA_DEFENCEBONUS.

    Code:
    function getDamageEstimate(baseDamage) {
            var damage = baseDamage - defenceBonus;
    ...
    uses the defenceBonus aquired from the statData recieved earlier.

    If you cant understand code you might try to print out obf1 for all obf0 and figure out what each and every one represents; its an easy evening project which will learn you a lot =)

  8. #23
    BlackRayquaza's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Posts
    574
    Reputation
    10
    Thanks
    186
    My Mood
    In Love

    It drinks a potion, and dcs me.
    YEP cock

  9. #24
    059's Avatar
    Join Date
    Mar 2011
    Gender
    male
    Location
    California
    Posts
    3,312
    Reputation
    700
    Thanks
    92,771
    This preemptively nexuses frequently on a knight, when you're taking a lot of damage, nexused at full health once :/
    My Vouches
    Having an issue with RotMG? Check for the solution here.


    Need Realm items? Come to RealmStock!

    Accepting PayPal - Bitcoin - Giftcards
    Selling ST Sets, Class Top Sets, Life Pots, and much more!


    Find it here: MPGH Sales Thread

  10. #25
    DeVoidCoder's Avatar
    Join Date
    Oct 2013
    Gender
    male
    Posts
    105
    Reputation
    10
    Thanks
    702
    My original script which this is based on is flawed, and therefore this script is flawed. It stores the latest bullet id for any enemy, instead of storing the enemy and the id. Bullet ids are re-used for different enemies, and so a bullet can have the same id as a different bullet, but have different damage. This is why sometimes it will nexus too early or later than usual. The solution is to keep a collection of bulletid->damage for every type of enemy, rather than having a single collection.
    Last edited by DeVoidCoder; 01-17-2014 at 11:29 PM.

  11. The Following User Says Thank You to DeVoidCoder For This Useful Post:

    059 (01-18-2014)

  12. #26
    c2k8s's Avatar
    Join Date
    Feb 2008
    Gender
    female
    Posts
    620
    Reputation
    26
    Thanks
    265
    Quote Originally Posted by DeVoidCoder View Post
    My original script which this is based on is flawed, and therefore this script is flawed. It stores the latest bullet id for any enemy, instead of storing the enemy and the id. Bullet ids are re-used for different enemies, and so a bullet can have the same id as a different bullet, but have different damage. This is why sometimes it will nexus too early or later than usual. The solution is to keep a collection of bulletid->damage for every type of enemy, rather than having a single collection.
    So thats why I get nexused in a WC on a fully topped (unb hp), 8/8 huntress while rushing .

    I NOW have my old skype account back after it was hacked - chris2k7sears
    My Vouches!
    Quote Originally Posted by pattyswerve View Post
    +1 VOUCH. Fast and friendly service. Looking forward to future deals
    Quote Originally Posted by Aceofspades12345 View Post
    c2k8s was fast and quick. Definite Vouch! 10/10 would trade again!
    Quote Originally Posted by Novus7 View Post
    c2k8s isn't fake. We did a good deal together. I vouch for him.
    Quote Originally Posted by SuperSean
    +1 vouch ! went first and got items right after . Thanks !
    Quote Originally Posted by kian1991
    Vouche! This guy is rly nice he went first all right Thanks man
    Quote Originally Posted by pattyswerve
    +1 Vouch Friendly guy! I went first and he kept his bargain. Looking forward to future deal!

    More on my profile page and more trades with people that don't vouch .

  13. #27
    fuckyoutwo's Avatar
    Join Date
    Nov 2013
    Gender
    female
    Posts
    25
    Reputation
    10
    Thanks
    12
    I was playing around with pefecting this before Cristmas... One thing baffled me, as damage isnt always sent with the shoot/shoot2 packets, how does the client know what number put in the player hit notification (e.g: -80)?

  14. #28
    DArgo2006's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    71
    Reputation
    10
    Thanks
    465
    How do I remove the bullet damage prediction? It just sent me back to nexus when I was doing O2 and I had full hp and I dodge the bullet that came towards me (wouldn't even half-hp me)....

  15. #29
    Necc's Avatar
    Join Date
    Mar 2014
    Gender
    male
    Posts
    431
    Reputation
    106
    Thanks
    61
    Quote Originally Posted by DeVoidCoder View Post
    My original script which this is based on is flawed, and therefore this script is flawed. It stores the latest bullet id for any enemy, instead of storing the enemy and the id. Bullet ids are re-used for different enemies, and so a bullet can have the same id as a different bullet, but have different damage. This is why sometimes it will nexus too early or later than usual. The solution is to keep a collection of bulletid->damage for every type of enemy, rather than having a single collection.

    Is there a newer version that is better?

  16. #30
    nilly's Avatar
    Join Date
    Aug 2012
    Gender
    male
    Posts
    2,652
    Reputation
    155
    Thanks
    13,983
    My Mood
    Angelic
    Quote Originally Posted by FainTMako View Post
    from my experience nothing can save u from a 1 shot
    It's possible nexus out of a 1 shot. Just a little FYI.
    Be careful, stray too far from the pack and you'll get lost.

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. Realm Relay Updates + Ability Auto Aim
    By Nisuxen in forum Realm of the Mad God Tutorials & Source Code
    Replies: 157
    Last Post: 03-19-2015, 04:18 AM
  2. Nilly's - Auto-pot / Auto-Special if Priest / Auto-Nexus - Code
    By nilly in forum Realm of the Mad God Tutorials & Source Code
    Replies: 55
    Last Post: 05-02-2014, 11:08 PM
  3. Hacked Client 123.5.1 No Auto Nexus
    By theweedman in forum Realm of the Mad God Help & Requests
    Replies: 2
    Last Post: 09-07-2012, 12:12 AM
  4. 123.3.1 Auto-aim, Auto-nexus, No-clip (Toggled)
    By un0rth0d0x in forum Realm of the Mad God Hacks & Cheats
    Replies: 19
    Last Post: 07-03-2012, 03:05 AM
  5. [Release] Auto Nexus
    By sportukr23 in forum Realm of the Mad God Hacks & Cheats
    Replies: 10
    Last Post: 07-02-2012, 03:02 PM