Page 1 of 9

[Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 4:36 pm
by Boredness
All scripts will be compiled here, kindly do not make antoher thread just to rls your own script.

Blink Godmode (Safe, only if you keep touching monsters)

Code: Select all

[enable]
0094ABB2:
db 83 c7
[Disable]
0094ABB2:
db 83 ef
Bring Your Own Rope (BYOR) (Known to D/C after sometime)

Code: Select all

[Enable]
Alloc(BYORope,32)
Alloc(rope,32)

BYORope:
mov [rope+c],eax
mov eax,rope
push [ecx+10]
pop [eax+10]
push [ecx+18]
pop [eax+14]
ret 10

rope:
dd 1 0 1 0 0 0 1
00A7AA9E: // 55 8B EC 51 8B 55 08 8B 45 10 3B D0 89 4D FC 7D
jmp BYORope
nop
nop
[Disable]
00A7AA9E:
PUSH EBP
MOV EBP, ESP

PUSH ECX
MOV EDX, [EBP+8]

Dealloc(BYORope,128)
Dealloc(rope)
Item Filter (Safe)

Code: Select all

    [ENABLE]
    Alloc(filter,124)
    label(ifreject)
    label(end)
    label(skip)
    Alloc(iftable,16024)
    label(ifexit)

    filter:
    push ebx
    push esi
    xor ebx, ebx
    mov esi,iftable

    ifreject:
    cmp eax,[esi]
    je skip
    cmp [esi],ebx
    je end
    add esi,4
    jmp ifreject

    skip:
    mov eax,00

    end:
    pop esi
    pop ebx
    mov [edi+34], eax
    mov edi, [ebp-14]
    jmp ifexit

    iftable:                             
    //Usable Items
    dd 1F6EE0 //Arrow for Bow
    dd 1F72C8 //Arrow for Crossbow
    dd 1F6EE1 //Bronze Arrow for Bow
    dd 1F72C9 //Bronze Arrow for Crossbow

    //Potions
    dd 1E8480 //Red Potion
    dd 1E8481 //Orange Potion
    dd 1E8482 //White Potion
    dd 1E8483 //Blue Potion
    dd 1E8486 //Mana Elixer

    dd 1E8487 //Red Pill
    dd 1E8488 //Orange Pill
    dd 1E8489 //White Pill
    dd 1E848A //Blue Pill
    dd 1E848B //Mana Elixer Pill

    dd 1E8484 //Elixer
    dd 1E8485 //Power Elixer

    dd 1F47D4 //All Cure Potion
    dd 1F47D0 //Antidote
    dd 1F47D1 //Eye Drop
    dd 1F47D3 //Holy Water
    dd 1F47D2 //Tonic

    dd 1E8C50 //Dexterity Potion
    dd 1E8C52 //Magic Potion
    dd 1E8C55 //Sniper Potion
    dd 1E8C51 //Speed Potion
    dd 1E8C54 //Warrior Potion
    dd 1E8C53 //Wizard Potion

    dd 1E8C59 //Dexterity Pill
    dd 1E8C57 //Magic Pill
    dd 1E8C58 //Sniper Pill
    dd 1E8C5A //Speed Pill
    dd 1E8C56 //Warrior Pill

    dd 1EAB93 //Orange
    dd 1EAB94 //Lemon

    //Rocks
    //dd 3D2071 //The Summoning Rock
    //dd 3D2070 //The Magic Rock

    //Mini-Game Items
    dd 3D7E3C //Monster Card
    dd 3D7E3D //Bloctopus Omok Piece
    dd 3D7E31 //Mushroom Omok Piece
    dd 3D7E3A //Octopus Omok Piece
    dd 3D7E39 //Omok Table
    dd 3D7E3F //Panda Teddy Omok Piece
    dd 3D7E3B //Pig Omok Piece
    dd 3D7E3E //Pink Teddy Omok Piece
    dd 3D7E30 //Slime Omok Piece
    dd 3D7E40 //Trixter Omok Piece

    //Ores
    dd 3D3013 //Adamantium Ore
    dd 3D3010 //Bronze Ore
    //dd 3D3016 //Gold Ore
    dd 3D3012 //Mithril Ore
    dd 3D3015 //Orihalcon Ore
    dd 3D3014 //Silver Ore
    dd 3D3011 //Steel Ore

    //Jewel Ores
    dd 3D5721 //Amethyst Ore
    dd 3D5722 //Aquamarine Ore
    //dd 3D5728 //Black Crystal Ore
    //dd 3D5727 //Diamond Ore
    dd 3D5723 //Emerald Ore
    dd 3D5720 //Garnet Ore
    dd 3D5724 //Opal Ore
    dd 3D5725 //Sapphire Ore
    dd 3D5726 //Topaz Ore
    dd 00

    0054F01A:
    jmp filter
    db 90
    ifexit:

    [DISABLE]
    dealloc(filter)
    dealloc(IFTable)

    0054F01A:
    MOV [EDI+34], EAX
    MOV EDI, [EBP-14]
Levitate (Safe)

Code: Select all

[enable]
009DA44B:
jne 009da665
[disable]
009DA44B:
je 009da665
Suck Right

Code: Select all

    [enable]
009DA370:
db 77 2e
[disable]
009DA370:
db 76 2e 
Super Tubi (Safe)

Code: Select all

[ENABLE]
0053E350:
db 90 90

[DISABLE]
0053E350:
db 75 36 
ZZ Vac (Safe)

Code: Select all

[ENABLE]
009D89E3:
db 90 90 90

009D89E3:
db 90 90 90

[DISABLE]
009D89E3:
db 45 e8 // or e0

009D89E3:
db dd 45 e8

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 4:53 pm
by wizme
ha, my blink godmode code is

Code: Select all

[enable]
0094ABB2:
add edi,1e
[disable]
0094ABB2:
sub edi,1e
working for mseav80 too

ok i just realised it does the same thing lol

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 5:04 pm
by Boredness
wizme wrote:ha, my blink godmode code is

Code: Select all

[enable]
0094ABB2:
add edi,1e
[disable]
0094ABB2:
sub edi,1e
working for mseav80 too

ok i just realised it does the same thing lol
Both blink godmode is the same.
when the op code change, the aob also change. The op code + aob change = the same...

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 5:17 pm
by wizme
why did you rls 2 script only =(

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 5:26 pm
by Boredness
wizme wrote:why did you rls 2 script only =(
I'll update trust me. You can share your scripts too, den i compile all of them to one post

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 5:52 pm
by wizme
wa i lazy compile again liao lar lol, can just post the link to gzn, lol =)

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 5:57 pm
by Ladylove
good job guys. After the release of bypass and scipts. Sure alot of leecher will flood this forum. ^^

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 6:12 pm
by Slayer369
Ladylove wrote:good job guys. After the release of bypass and scipts. Sure alot of leecher will flood this forum. ^^
That's what leecher do best right?
GJ on rls the script hope you got more update comming up.
Damm i don't ahve a bypass -.-''

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 6:16 pm
by Boredness
Slayer369 wrote:
Ladylove wrote:good job guys. After the release of bypass and scipts. Sure alot of leecher will flood this forum. ^^
That's what leecher do best right?
GJ on rls the script hope you got more update comming up.
Damm i don't ahve a bypass -.-''
The bypass is in the anti-cheat section :]
XP can use, method has been out

Re: [Release] v80 MapleSEA Scripts

Posted: Sat Sep 05, 2009 6:16 pm
by Ladylove
Slayer369 wrote:
Ladylove wrote:good job guys. After the release of bypass and scipts. Sure alot of leecher will flood this forum. ^^
That's what leecher do best right?
GJ on rls the script hope you got more update comming up.
Damm i don't ahve a bypass -.-''
same. XD the hks doesnt work for me. huhu.