v83 missgodmode

Results 1 to 6 of 6
  1. #1
    Novice startlightz is offline
    MemberRank
    Apr 2015 Join Date
    2Posts

    v83 missgodmode

    how do u patch or check if a person is using miss godmode?


  2. #2
    Omega sunnyboy is offline
    MemberRank
    Mar 2010 Join Date
    6,108Posts

    Re: v83 missgodmode

    code from CheatInspector.java in moople

    PHP Code:
        private int misses 0;
        private 
    int lastmisses 0;
        private 
    int samemisscount 0;

        public 
    void addMiss() {
            
    this.misses++;
        }

        public 
    void resetMisses() {
            if (
    lastmisses == misses && misses 6) {
                
    samemisscount++;
            }
            if (
    samemisscount 4) {
                
    chr.autoban("Autobanned for : " misses " Miss godmode"1false);
            } else if (
    samemisscount 0) {
                
    this.lastmisses misses;
            }
            
    this.misses 0;
        } 
    credits 2 kevintjuh93 (moopledev)

  3. #3
    Moderator Eric is offline
    ModeratorRank
    Jan 2010 Join Date
    DEV CityLocation
    3,188Posts

    Re: v83 missgodmode

    pretty much if you don't have cheatinspector you could place that into AutobanFactory or whatever instances upon MapleCharacter in Odin, and add those methods/variables. Then, somewhere in TakeDamageHandler (forgot where nexon calls/checks so i guess you can place it anywhere) get the player's cheat tracker or whatever it is in odin and call addMiss from it. You'll have to make a check so that if they get hit (attack was NOT a miss) that it will call "resetMisses".

  4. #4
    Novice startlightz is offline
    MemberRank
    Apr 2015 Join Date
    2Posts

    Re: v83 missgodmode

    is there any better method? wouldnt u get banned with this from regular misses?

  5. #5
    C# developer xStr0nGx is offline
    MemberRank
    Dec 2013 Join Date
    UnknownLocation
    659Posts

    Re: v83 missgodmode

    Quote Originally Posted by startlightz View Post
    is there any better method? wouldnt u get banned with this from regular misses?
    if character level < monster level && misscount > 5 then banPlayer();

  6. #6
    Moongran Saii is offline
    MemberRank
    Jan 2012 Join Date
    510Posts

    Re: v83 missgodmode

    you are supposed to check if a certain player exceeds the amount of possible consecutive misses.
    this can be done by counting the misses like displayed above.
    do note, however, that with high avoid and level, this can be triggered by weak monsters. so level and avoid ability should probably be taken into consideration



Advertisement