Anda pengunjung yang ke:

Traffic Counter

BANNER SAHABAT

Minggu, 26 Agustus 2012

AOB Permanent Lostsaga + Base nya

Filled under:

Oke Ketemu dengan saya gy di Artikel berbeda tentunya..

Kali ini Saya akan berbagi AOB Permanent Lost Saga + Basenya : :)
Oke Langsung aja ya nih Codingnya Di Bawah...

 


<--------------------------Nih AOB nya Bro ------------------------------>

NO Delay : 4F 6E 50 75 73 68 53 74 72 75 63 74 44 65 6C 61 79
1 Hit Crusade : 4D 41 58 5F 48 50 5F 55 50 = lostsaga.exe+CDEFF8
Fall Damage UP : 53 54 52 5F 44 41 4D 41 47 45 5F 55 50
Move Speed UP : 4D 4F 56 45 5F 53 50 45 45 44 5F 55 50
Hero title bonus : 68 65 72 6F 5F 74 69 74 6C 65 5F 62 6F 6E 75 73
HACK GRADE : 67 72 61 64 65 5F 62 6C 75 65 5F 6C 65 76 65 6C
Hide ARMOR : 68 69 64 65 5F 61 72 6D 6F 72 = lostsaga.exe+CC7604
Hide HELM : 68 69 64 65 5F 68 65 6C 6D
Hide WEAPON : 68 69 64 65 5F 77 65 61 70 6F 6E
Hide CLOAK : 68 69 64 65 5F 63 6C 6F 61 6B
Bonus PESO : 62 6F 6E 75 73 5F 70 65 73 6F 25 64
FALL DAMAGE DOWN : 46 41 4C 4C 5F 44 41 4D 41 47 45 5F 44 4F 57 4E
MOVE SPEED / LARI MACAN : 4D 4F 56 45 5F 53 50 45 45 44 5F 55 50
DAMAGE UP ++ : 53 54 52 5F 44 41 4D 41 47 45 5F 55 50 CDF104
ARMOR DEFENSE ++ : 64 65 66 65 6E 73 65 5F 65 6E 61 62 6C 65 5F 73
MANCING GET EXP 200% : 66 69 73 68 69 6E 67 5F 65 78 70 5F 25 64
EXP HACK : 65 78 70 5F 25 64
Brutal Attack: 43 53 5F 41 54 54 41 43 4B
No Drop : 43 53 5F 44 52 4F 50 5F 5A 4F 4E 45 5F 44 4F 57 4E 00
Max Combo : 25 73 5F 6D 6F 74 69 6F 6E 5F 70 72 65 5F 64 65 6C 61 79
=========================================================

<<------------------------------Nih BASE nya ---------------------------------->>

?//===================================//
//Name : Base LostSaga Fullhacks
//Created : Gmzada
//Thank'z : ALL Freinds
//Notice : Dilarang di sebar !
... //===================================//

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <stdio.h>
#include <stdlib.h>

//============ OFFSET ============
#define NoDelay 0x
#define OneHitCSD 0x
#define FallDamage 0x
#define SpeedHack 0x
//============ OFFSET ============

LPTSTR ModulGame = "lostsaga.exe";

void Patch(void *adr, void *ptr, int size)

{

DWORD OldProtection;

VirtualProtect(adr,size,PAGE_EXECUTE_READWRITE, &OldProtection);

memcpy(adr,ptr,size);

VirtualProtect(adr,size,OldProtection, &OldProtection);

}

void WritePointer(unsigned long ulBase, int iOffset, int iValue)

{

if (!IsBadReadPtr((VOID*)ulBase, sizeof(unsigned long)))

{

if (!IsBadWritePtr((void*)(*(unsigned long*)ulBase + iOffset), sizeof(unsigned long)))

{

*(int*)(*(unsigned long*)ulBase + iOffset) = iValue;

}

}

}

void SagaHacy()

{

while(1)
{

//========== No Delay ==========//
if (GetAsyncKeyState(VK_F1)&1) {
MessageBeep(MB_ICONINFORMATION);
DWORD adrMin1, adrMin2 = 0;
DWORD dwPB = (DWORD)GetModuleHandleA("lostsaga.exe");
if (dwPB > 0) {
adrMin1 = dwPB + (DWORD)NoDelay;
Patch((void *)(adrMin1),(void*)(PBYTE)"\x00\x00\x00", 3); // Jangan di ganti Agar WORK
}

}
//========== 1 Hit Crusade ==========//
if (GetAsyncKeyState(VK_F2)&1) {
MessageBeep(MB_ICONINFORMATION);
DWORD adrMin1, adrMin2 = 0;
DWORD dwPB = (DWORD)GetModuleHandleA("lostsaga.exe");
if (dwPB > 0) {
adrMin1 = dwPB + (DWORD)OneHitCSD;
Patch((void *)(adrMin1),(void*)(PBYTE)"\x00\x00\x00", 3);// Jangan di ganti Agar WORK
}

}

//========== Fall Damage UP ==========//
if (GetAsyncKeyState(VK_F3)&1) {
MessageBeep(MB_ICONINFORMATION);
DWORD adrMin1, adrMin2 = 0;
DWORD dwPB = (DWORD)GetModuleHandleA("lostsaga.exe");
if (dwPB > 0) {
adrMin1 = dwPB + (DWORD)FallDamage;
Patch((void *)(adrMin1),(void*)(PBYTE)"\x00\x00\x00", 3);// Jangan di ganti Agar WORK
}

}

//========== SpeedHack Hook ==========//
if (GetAsyncKeyState(VK_F4)&1) {
MessageBeep(MB_ICONINFORMATION);
DWORD adrMin1, adrMin2 = 0;
DWORD dwPB = (DWORD)GetModuleHandleA("lostsaga.exe");
if (dwPB > 0) {
adrMin1 = dwPB + (DWORD)SpeedHack;
Patch((void *)(adrMin1),(void*)(PBYTE)"\x00\x00\x00", 3);// Jangan di ganti Agar WORK
}

}

Sleep(100); //Jangan di ganti , Agar Tembus GG Cowboy

}

}

BOOL APIENTRY DllMain(HINSTANCE hDll, DWORD callReason, LPVOID lpReserved) {

DisableThreadLibraryCalls(hDll);

if(callReason == DLL_PROCESS_ATTACH) {

MessageBox(0, "Credit by Gmzada\n\nThank'z to : ALL Freinds", "Notice",MB_ICONINFORMATION | MB_OKCANCEL); // Notice yg Keluar
MessageBox(0, "No Delay : F1\n1 Hit Crusade : F2\nFall Damage UP : F3\nSpeedHack Hook : F4\n\nTekan Saat Splash Cowboy Menghilang / Saat Mulai Splash Screen Hitam", "Just Work to OS Win 7",MB_ICONWARNING | MB_OKCANCEL); // Notice yg Keluar
CreateThread(0, 0, (LPTHREAD_START_ROUTINE)&SagaHacy,0, 0, 0);

char strDLLName [_MAX_PATH];

GetModuleFileName(hDll, strDLLName , _MAX_PATH);

if (strstr(strDLLName, "Habhu.dll") <= 0) {//Habhu

// tampilkan pesan, kalo dll nya sdh bukan asli / sudah di rename

MessageBox(0, "Ente Leacher ?","Deteckor",MB_ICONSTOP | MB_OK);
MessageBox(0, "Udah dikasih kok rename ?","Deteckor",MB_ICONSTOP | MB_OK);
MessageBox(0, "Dadah !\nKompimu aku Restart ya :*","Deteckor",MB_ICONSTOP | MB_OK);
ExitProcess(0);//ERROR

}

}

---------------------------------------------------------------------------------

Nah itulah codingnya.. oh iya sebagai imbalannya Komentar Terima kasihnya Yach..
Jangan Lupa.. ^_^

NB : KOMENTAR MU SANGAT BERHARGA BAGI SAYA

Ditulis Oleh : SyariĪ ~ Tips dan Trik Blogspot

Syarip Hidayat Sobat sedang membaca artikel tentang AOB Permanent Lostsaga + Base nya. TuTorial Ku UnTuK Mu™ Memperbolehkan mengcopy paste atau menyebar-luaskan artikel ini, namun jangan lupa untuk meletakkan link dibawah ini sebagai sumbernya



Baca Artikel Lainnya.!:

25 komentar:

  1. Videonya bisa di cari di youtube :17

    BalasHapus
  2. Anda memang hebat ,programer games yang bisa sukses di masa depan ,terus kembangkan dan pasti anda berhasil,,

    BalasHapus
  3. @Alip Iskandar Untuk Masalah programer Saya Masih dalam tahapan pembelajaran masih di bilang newbie kk :)Untuk Sobat thanks Sudah mau berkunjung dan sempatkan waktu untuk berkomentar di artikel ini TQ

    BalasHapus
  4. bang...is nice trus lah share aob and base nya and trus kbriy...aku jg pgn blajar buat bikin cheat....

    BalasHapus
  5. I know this if off topіс but ӏ'm looking into starting my own blog and was curious what all is required to get setup? I'm assuming
    having a blog like yourѕ would сoѕt a pretty penny?

    I'm not very internet smart so I'm not 100% certain. Any tips or advice would be greatly appreciated. Appreciate it

    My website ... www.zulutradeonline.com
    Also see my website >

    BalasHapus
  6. Hi my famіly member! I wish to say that this pοst is amazing, gгeat written and inсludе almost аll importаnt infoѕ.
    Ӏ'd like to see more posts like this .

    Here is my blog: vapornine
    my web site >

    BalasHapus
  7. Ӏt's remarkable in support of me to have a site, which is useful in favor of my experience. thanks admin

    Here is my web page :: ankle braces For runners
    Here is my webpage :: samsung galaxy note 2

    BalasHapus
  8. Very nіce poѕt. I just stumbled upon your blog
    anԁ wanted to mentіοn thаt I havе truly loved
    broωsing yοur blоg ρostѕ.
    In any casе І'll be subscribing for your rss feed and I hope you write again soon!

    Also visit my page ...
    my web site -

    BalasHapus
  9. Αmazing blоg! Do you hаve anу recommendаtionѕ fοr aѕpiring wrіters?
    I'm hoping to start my own blog soon but I'm a littlе lοst on eveгуthing.
    Would you rеcommenԁ ѕtаrting with a frеe platfοrm like Wordpresѕ or go for a раіd
    oрtion? There are sο many optiоns out there that I'm completely overwhelmed .. Any suggestions? Appreciate it!

    Also visit my homepage -
    My web page:

    BalasHapus
  10. I'm impressed, I must say. Seldom do I come across a blog that's both equallу educаtive
    and engaging, аnd let me tell yоu, you have
    hit thе nаil on the heaԁ. Thе ρroblem іs something which too
    few mеn and wοmen are speaking intelligеntly abοut.
    I'm very happy that I found this in my search for something regarding this.

    Here is my web site; samsung galaxy note 2
    Here is my website :

    BalasHapus
  11. Hey I know this is off topic but I was ωonԁering іf you kneω of anу wiԁgets I could add
    to my blοg that аutomatically tweet my newest twіtter updates.
    I've been looking for a plug-in like this for quite some time and was hoping maybe you would have some experience with something like this. Please let me know if you run into anything. I truly enjoy reading your blog and I look forward to your new updates.

    Here is my webpage; social networking marketing
    Here is my web page marketing and social networking

    BalasHapus
  12. I like the helpful info yоu proѵiԁe in youг artiсles.
    I'll bookmark your blog and check again here regularly. I'm quite ceгtain I will leаrn many nеw stuff rіght here!

    Best of luck for the nеxt!

    Also visit my webpage ... arkplanjur.se
    Feel free to visit my blog ; bny

    BalasHapus
  13. For most rеcent news yοu havе tо visit web and on the web
    I found this website as a fіnest web pаge for nеwest updates.


    Alѕo viѕіt my web blοg followersempire.com
    Here is my website :: more twitter followers without following

    BalasHapus
  14. If ѕomе one nееds expert view on the topic οf blogging anԁ
    site-builԁing after that i recommend him/her to ρay a visit this wеbpage, Keep up
    thе goοd job.
    Here is my blog get followers in instagram

    BalasHapus
  15. hi!,ӏ love your writіng verу much!
    pеrcentagе ωе keeρ іn tоuch more about your ρost on AOL?
    I requіrе a sρeciаlist on thіѕ area to
    rеsolve my problem. Μaуbе that is yоu!
    Taking а look forwarԁ to sеe you.
    My page :: http://instagram-promoter.com

    BalasHapus
  16. This piece of writing provides clear idea designed for the new viewers of blogging,
    that really how to do blogging and site-building.


    Feel free to visit my homepage: http://plancherdirect.com/component/easyblog/entry/un-plancher-flottant.html
    Here is my weblog ; cfj

    BalasHapus
  17. Please let me know if you're looking for a writer for your blog. You have some really good posts and I feel I would be a good asset. If you ever want to take some of the load off, I'd absolutely love to write some material
    for your blog in exchange for a link back to mine.
    Please blast me an email if interested. Kudos!

    my webpage - ava fx

    BalasHapus
  18. are interested in advertising on my blog..!
    my Contact
    http://0c6586cb.linkbucks.com/url/http://sariptrik.blogspot.com/p/contact-page.html

    BalasHapus
  19. Fantastiс bеat ! I wish tο apprentice even as уou
    amend уοuг web site, how could
    i subscгibe for a blog web site? The account aided me a acceptablе deal.
    I havе bеen tiny bit аcquainted of this your
    bгoaԁcast оffered viviԁ transparent ideа

    Also visit mу wеb-site :: diamondlinks review

    BalasHapus
  20. Sekarang Udh Gax Work XP, Upadte Lagi Ya AoB Yang Lebih Baru , Good Post Thx

    BalasHapus