diff --git a/sigIRCv2.jar b/sigIRCv2.jar index cad114e..d1bab23 100644 Binary files a/sigIRCv2.jar and b/sigIRCv2.jar differ diff --git a/src/sig/modules/RabiRaceModule.java b/src/sig/modules/RabiRaceModule.java index 553281e..43d426b 100644 --- a/src/sig/modules/RabiRaceModule.java +++ b/src/sig/modules/RabiRaceModule.java @@ -217,20 +217,20 @@ public class RabiRaceModule extends Module{ private void UpdateMyProfile() { if (foundRabiRibi) { //System.out.println("Called."); - int warp_counter = readIntFromMemory(MemoryOffset.WARP_TRANSITION_COUNTER); - if (warp_counter==203 || warp_counter==141) { + //int warp_counter = readIntFromMemory(MemoryOffset.WARP_TRANSITION_COUNTER); + //if (warp_counter==203 || warp_counter==141) { myProfile.rainbowEggCount = readIntFromMemory(MemoryOffset.RAINBOW_EGG_COUNT); myProfile.attackUps = readItemCountFromMemory(MemoryOffset.ATTACKUP_START,MemoryOffset.ATTACKUP_END); myProfile.healthUps = readItemCountFromMemory(MemoryOffset.HEALTHUP_START,MemoryOffset.HEALTHUP_END); myProfile.manaUps = readItemCountFromMemory(MemoryOffset.MANAUP_START,MemoryOffset.MANAUP_END); myProfile.regenUps = readItemCountFromMemory(MemoryOffset.REGENUP_START,MemoryOffset.REGENUP_END); myProfile.packUps = readItemCountFromMemory(MemoryOffset.PACKUP_START,MemoryOffset.PACKUP_END); - myProfile.isPaused = readIntFromMemory(MemoryOffset.WARP_TRANSITION_COUNTER)==141; + //myProfile.isPaused = readIntFromMemory(MemoryOffset.WARP_TRANSITION_COUNTER)==141; myProfile.itempct = readFloatFromMemory(MemoryOffset.ITEM_PERCENT); myProfile.mappct = readFloatFromMemory(MemoryOffset.MAP_PERCENT); myProfile.playtime = readIntFromMemory(MemoryOffset.PLAYTIME); myProfile.updateClientValues(); - } + //} } }