76

(0 replies, posted in Tools)

DarKTeaM - Webshop (0.97D)


This webshot is easy to install... just put all the scripts (install folder) inside the db... first the tables, then the procedures...
this webshop was built focusing the Brasil currency, and pay methods... so if you want it to work with your country's currency and pay methods, you'll need to mod it
obs: translations needed to english (current: portuguese)

Screen:
http://img377.imageshack.us/img377/417/18482213.png

Download:
Shop DT (6.7 MB):
Link 1: http://www.2shared.com/file/8303131/d1c … op_DT.html

Credits:
-Wolfulus (RZ)

Auto Reset - script SQL 2000

There is SQL 2000 auto reset script, working on 0.99.62XT versions:

BEGIN TRANSACTION
DECLARE @JobID BINARY(16)
DECLARE @ReturnCode INT
SELECT @ReturnCode = 0
IF (SELECT COUNT(*) FROM msdb.dbo.syscategories WHERE name = N'[Uncategorized (Local)]') < 1
EXECUTE msdb.dbo.sp_add_category @name = N'[Uncategorized (Local)]'
SELECT @JobID = job_id
FROM msdb.dbo.sysjobs
WHERE (name = N'AutoReset')
IF (@JobID IS NOT NULL)
BEGIN
IF (EXISTS (SELECT *
FROM msdb.dbo.sysjobservers
WHERE (job_id = @JobID) AND (server_id <> 0)))
BEGIN
RAISERROR (N'Unable to import job ''AutoReset'' since there is already a multi-server job with this name.', 16, 1)
GOTO QuitWithRollback
END
ELSE
EXECUTE msdb.dbo.sp_delete_job @job_name = N'AutoReset'
SELECT @JobID = NULL
END

BEGIN

EXECUTE @ReturnCode = msdb.dbo.sp_add_job @job_id = @JobID OUTPUT , @job_name = N'AutoReset', @owner_login_name = N'sa', @description = N'AutoResetScript', @category_name = N'[Uncategorized (Local)]', @enabled = 1, @notify_level_email = 0, @notify_level_page = 0, @notify_level_netsend = 0, @notify_level_eventlog = 2, @delete_level= 0
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback

EXECUTE @ReturnCode = msdb.dbo.sp_add_jobstep @job_id = @JobID, @step_id = 1, @step_name = N'AutoReset', @command = N'UPDATE Character
SET clevel = 1, Experience = 0, LevelUpPoint = 1000 * (Reset + 1), Money = Money - (50000000), Strength = 18, Dexterity = 18, Vitality = 15, Energy = 30, MapNumber = 0, MapPosX = 130, MapPosY = 130, PkTime = 0, PkCount = 0, PkLevel = 0, Reset = Reset + 1
FROM Character JOIN MEMB_STAT ON Character.AccountID=MEMB_STAT.memb___id
COLLATE Latin1_general_CI_AI
WHERE ((class = 0) OR (class = 1)) AND (clevel >= 380) AND (Money >= (50000000)) AND (ConnectStat = 0) AND (Reset < 500);

UPDATE Character
SET clevel = 1, Experience = 0, LevelUpPoint = 1000 * (Reset + 1), Money = Money - (50000000), Strength = 28, Dexterity = 20, Vitality = 25, Energy = 10, MapNumber = 0, MapPosX = 130, MapPosY = 130, PkTime = 0, PkCount = 0, PkLevel = 0, Reset = Reset + 1
FROM Character JOIN MEMB_STAT ON Character.AccountID = MEMB_STAT.memb___id
COLLATE Latin1_general_CI_AI
WHERE ((class = 16) OR (class = 17)) AND (clevel >= 380) AND (Money >= (50000000)) AND (ConnectStat = 0) AND (Reset < 500);

UPDATE Character
SET clevel = 1, Experience = 0, LevelUpPoint = 1000 * (Reset + 1), Money = Money - (50000000), Strength = 22, Dexterity = 25, Vitality = 20, Energy = 15, MapNumber = 0, MapPosX = 130, MapPosY = 130, PkTime = 0, PkCount = 0, PkLevel = 0, Reset = Reset + 1
FROM Character JOIN MEMB_STAT ON Character.AccountID = MEMB_STAT.memb___id
COLLATE Latin1_general_CI_AI
WHERE ((class = 32) OR (class = 33)) AND (clevel >= 380) AND (Money >= (50000000)) AND (ConnectStat = 0) AND (Reset < 500);

UPDATE Character
SET clevel = 1, Experience = 0, LevelUpPoint = 1000 * (Reset + 1), Money = Money - (50000000), Strength = 26, Dexterity = 26, Vitality = 26, Energy = 26, MapNumber = 0, MapPosX = 130, MapPosY = 130, PkTime = 0, PkCount = 0, PkLevel = 0, Reset = Reset + 1
FROM Character JOIN MEMB_STAT ON Character.AccountID = MEMB_STAT.memb___id
COLLATE Latin1_general_CI_AI
WHERE (class = 48) AND (clevel >= 380) AND (Money >= (50000000)) AND (ConnectStat = 0) AND (Reset < 500);

UPDATE Character
SET clevel = 1, Experience = 0, LevelUpPoint = 1000 * (Reset + 1), Money = Money - (50000000), Strength = 26, Dexterity = 26, Vitality = 26, Energy = 26, MapNumber = 0, MapPosX = 130, MapPosY = 130, PkTime = 0, PkCount = 0, PkLevel = 0, Reset = Reset + 1
FROM Character JOIN MEMB_STAT ON Character.AccountID = MEMB_STAT.memb___id
COLLATE Latin1_general_CI_AI
WHERE (class = 64) AND (clevel >= 380) AND (Money >= (50000000)) AND (ConnectStat = 0) AND (Reset < 500);
', @database_name = N'MuOnline', @server = N'', @database_user_name = N'', @subsystem = N'TSQL', @cmdexec_success_code = 0, @flags = 0, @retry_attempts = 0, @retry_interval = 1, @output_file_name = N'', @on_success_step_id = 0, @on_success_action = 1, @on_fail_step_id = 0, @on_fail_action = 2
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
EXECUTE @ReturnCode = msdb.dbo.sp_update_job @job_id = @JobID, @start_step_id = 1

IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback

EXECUTE @ReturnCode = msdb.dbo.sp_add_jobschedule @job_id = @JobID, @name = N'AutoReset', @enabled = 1, @freq_type = 4, @active_start_date = 20060831, @active_start_time = 0, @freq_interval = 1, @freq_subday_type = 4, @freq_subday_interval = 1, @freq_relative_interval = 0, @freq_recurrence_factor = 0, @active_end_date = 99991231, @active_end_time = 235959
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback

EXECUTE @ReturnCode = msdb.dbo.sp_add_jobserver @job_id = @JobID, @server_name = N'(local)'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback

END
COMMIT TRANSACTION
GOTO EndSave
QuitWithRollback:
IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION
EndSave:

Before you launch the query, be sure, that:

1st:

Exist column "Reset" in Database => MuOnline =>Character
If no, right click on table "character" and add column name: "Reset" , data type: "int" , lenght: "4", allow nulls: "NO", and setin table "Columns" default value to "(0)" .

2nd:
Column "Reset" must be set to default value "(0)". To do this, right click on character table, find reset column and disable nulls. Under the Reset column, in sction "columns", set default value to "(0)".

3rd:

Do not forget to run SQL Server agent, otherwise the script wont work.

Autoreset parameters:
Reset lvl: 380
Addpoints after reset: 1000
Stats stay: NO
Reset Cost: 50m

To autoreset: Log off for 1 minute
Done

PS: Do not write "" in tables!

Cheats DB for any Dll Antihack

Main

AntiHack.CPP

// ----------------------------------------------------
//  Dll original: f1x / f1ksiu@hotmail.com
//  Creation date: 2008-06-26
//  Cheats Added: Mulegend.com.ar
//      Update:: 26-05-2009
//      Total cheats: 92
// ----------------------------------------------------

#include "stdafx.h"
#include "Antihack.h"
#include <tlhelp32.h>
#include <windows.h>
#include <stdlib.h>


#ifdef _MANAGED
#pragma managed(push, off)
#endif

ANITHACK_PROCDUMP g_ProcessesDumps[MAX_PROCESS_DUMP] = 
{
{0x4C8259, {0xA1, 0x38, 0xBD, 0x4C, 0x00, 0x8B, 0x00, 0x8B, 0x4D, 0xFC, 0xBA, 0xC0, 0x82, 0x4C, 0x00, 0xE8, 0x1F, 0xF1, 0xFF, 0xFF, 0x33, 0xDB, 0xE8, 0xF8, 0xBE, 0xF3, 0xFF, 0x33, 0xC0, 0x5A, 0x59, 0x59}},   // Catastrophe v0.1
{0x4C5F31, {0x7C, 0x23, 0x8B, 0x45, 0xFC, 0x80, 0x38, 0xC1, 0x75, 0x1B, 0x8B, 0x45, 0xFC, 0x80, 0x78, 0x02, 0xF3, 0x75, 0x12, 0x8B, 0x45, 0xFC, 0x80, 0x78, 0x03, 0x00, 0x75, 0x09, 0x8B, 0x45, 0xFC, 0x80}},   // Catastrophe v0.1
{0x4CCB71, {0xA1, 0x40, 0xFD, 0x4C, 0x00, 0x8B, 0x00, 0x8B, 0x4D, 0xFC, 0xBA, 0xD8, 0xCB, 0x4C, 0x00, 0xE8, 0xAB, 0xF2, 0xFF, 0xFF, 0x33, 0xDB, 0xE8, 0xE0, 0x75, 0xF3, 0xFF, 0x33, 0xC0, 0x5A, 0x59, 0x59}},   // Catastrophe v1.2
{0x4CA831, {0x89, 0x55, 0xFC, 0x8B, 0x45, 0xFC, 0xE8, 0xC8, 0xA3, 0xF3, 0xFF, 0x33, 0xC0, 0x55, 0x68, 0x*** 0xA8, 0x4C, 0x00, 0x64, 0xFF, 0x30, 0x64, 0x89, 0x20, 0x8B, 0x45, 0xFC, 0xE8, 0xC2, 0xA1, 0xF3}},   // Catastrophe v1.2
{0x44E08C, {0x64, 0x89, 0x25, 0x00, 0x00, 0x00, 0x00, 0x83, 0xEC, 0x58, 0x53, 0x56, 0x57, 0x89, 0x65, 0xE8, 0xFF, 0x15, 0x04, 0xF4, 0x48, 0x00, 0x33, 0xD2, 0x8A, 0xD4, 0x89, 0x15, 0xD8, 0x0A, 0x4D, 0x00}},   // WPePro 0.9a
{0x4851C2, {0x75, 0x1C, 0x53, 0x8B, 0xCE, 0xFF, 0x75, 0xE4, 0xFF, 0x75, 0xE0, 0x57, 0xE8, 0x90, 0x01, 0xFE, 0xFF, 0xEB, 0x0B, 0x53, 0x57, 0xFF, 0x76, 0x1C, 0xFF, 0x15, 0x9C, 0xF5, 0x48, 0x00, 0x8B, 0x86}},   // WPePro 0.9a
{0x4307BE, {0x75, 0x0A, 0x6A, 0x1C, 0xE8, 0x49, 0x01, 0x00, 0x00, 0x83, 0xC4, 0x04, 0xE8, 0xB1, 0x30, 0x00, 0x00, 0x85, 0xC0, 0x75, 0x0A, 0x6A, 0x10, 0xE8, 0x36, 0x01, 0x00, 0x00, 0x83, 0xC4, 0x04, 0xC7}},   // WPePro 1.3
{0x44397B, {0x75, 0x07, 0x8B, 0xCF, 0xE8, 0xF8, 0xF2, 0xFF, 0xFF, 0x5F, 0x5E, 0xC2, 0x08, 0x00, 0x53, 0x56, 0x8B, 0x74, 0x24, 0x0C, 0x57, 0xFF, 0x76, 0x04, 0xFF, 0x15, 0xC4, 0x9B, 0x49, 0x00, 0x8B, 0xD8}},   // WPePro 1.3
{0x402190, {0x55, 0x8B, 0xEC, 0x53, 0x56, 0x57, 0xBB, 0x00, 0x60, 0x40, 0x00, 0x66, 0x2E, 0xF7, 0x05, 0x1E, 0x28, 0x40, 0x00, 0x04, 0x00, 0x0F, 0x85, 0xDB, 0x00, 0x00, 0x00, 0x6A, 0x00, 0xFF, 0x15, 0x18}},   // Permit
{0x402230, {0xE8, 0x07, 0x01, 0x00, 0x00, 0xB8, 0xFF, 0x00, 0x00, 0x00, 0x72, 0x36, 0xE8, 0x5E, 0x02, 0x00, 0x00, 0xE8, 0x3B, 0x04, 0x00, 0x00, 0xB8, 0xFF, 0x00, 0x00, 0x00, 0x72, 0x07, 0x53, 0xE8, 0x57}},   // Permit
{0x48F5AE, {0x55, 0x8B, 0xEC, 0x6A, 0xFF, 0x68, 0x90, 0x8A, 0x4E, 0x00, 0x68, 0x8C, 0x44, 0x49, 0x00, 0x64, 0xA1, 0x00, 0x00, 0x00, 0x00, 0x50, 0x64, 0x89, 0x25, 0x00, 0x00, 0x00, 0x00, 0x83, 0xEC, 0x58}},   // T Search
{0x48F619, {0xE8, 0xCE, 0x2D, 0x00, 0x00, 0x85, 0xC0, 0x75, 0x08, 0x6A, 0x10, 0xE8, 0xB2, 0x00, 0x00, 0x00, 0x59, 0x33, 0xF6, 0x89, 0x75, 0xFC, 0xE8, 0x63, 0x7A, 0x00, 0x00, 0xFF, 0x15, 0x68, 0x44, 0x4D}},   // T Search
{0x40970E, {0x68, 0xB4, 0x98, 0x40, 0x00, 0x64, 0xA1, 0x00, 0x00, 0x00, 0x00, 0x50, 0x64, 0x89, 0x25, 0x00, 0x00, 0x00, 0x00, 0x83, 0xEC, 0x68, 0x53, 0x56, 0x57, 0x89, 0x65, 0xE8, 0x33, 0xDB, 0x89, 0x5D}},   // Speed Gear 5
{0x568E9A, {0x68, 0xB8, 0xF9, 0x85, 0x13, 0xE8, 0x9D, 0x53, 0x01, 0x00, 0xB6, 0x94, 0x70, 0x4B, 0xE8, 0x87, 0xE5, 0x43, 0xE4, 0x43, 0x21, 0x7B, 0x18, 0xB7, 0xBB, 0x79, 0x6D, 0x3E, 0xF9, 0x1E, 0x5C, 0x7F}},   // Speed Gear 6
{0x512134, {0x75, 0x05, 0x8A, 0x16, 0x46, 0x12, 0xD2, 0x73, 0xEA, 0x02, 0xD2, 0x75, 0x05, 0x8A, 0x16, 0x46, 0x12, 0xD2, 0x73, 0x4F, 0x33, 0xC0, 0x02, 0xD2, 0x75, 0x05, 0x8A, 0x16, 0x46, 0x12, 0xD2, 0x0F}},   // WildProxy v1.0 Public
{0x512014, {0xB8, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0B, 0xC0, 0x74, 0x68, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x58, 0x05, 0x53, 0x00, 0x00, 0x00, 0x80, 0x38, 0xE9, 0x75, 0x13, 0x61, 0xEB, 0x45, 0xDB, 0x2D, 0x37}},   // WildProxy v1.0 Public
{0x401320, {0xEB, 0x10, 0x66, 0x62, 0x3A, 0x43, 0x2B, 0x2B, 0x48, 0x4F, 0x4F, 0x4B, 0x90, 0xE9, 0x98, 0x90, 0x46, 0x00, 0xA1, 0x8B, 0x90, 0x46, 0x00, 0xC1, 0xE0, 0x02, 0xA3, 0x8F, 0x90, 0x46, 0x00, 0x52}},   // WildProxy v0.1
{0x4013F9, {0xE8, 0x1A, 0x21, 0x06, 0x00, 0xA3, 0x8B, 0x90, 0x46, 0x00, 0x83, 0xF8, 0x00, 0x73, 0x91, 0xB8, 0xFC, 0x00, 0x00, 0x00, 0xE8, 0x7A, 0xFF, 0xFF, 0xFF, 0xC3, 0x83, 0x3D, 0x8B, 0x90, 0x46, 0x00}},   // WildProxy v0.1
{0x401320, {0xEB, 0x10, 0x66, 0x62, 0x3A, 0x43, 0x2B, 0x2B, 0x48, 0x4F, 0x4F, 0x4B, 0x90, 0xE9, 0x98, 0x20, 0x47, 0x00, 0xA1, 0x8B, 0x20, 0x47, 0x00, 0xC1, 0xE0, 0x02, 0xA3, 0x8F, 0x20, 0x47, 0x00, 0x52}},   // WildProxy v0.2
{0x4013B0, {0xE8, 0xD7, 0xFF, 0xFF, 0xFF, 0xB9, 0xB4, 0x00, 0x00, 0x00, 0x51, 0x6A, 0x08, 0xE8, 0xF4, 0x00, 0x07, 0x00, 0x50, 0xE8, 0x60, 0x01, 0x07, 0x00, 0x0B, 0xC0, 0x75, 0x0A, 0xB8, 0xFD, 0x00, 0x00}},   // WildProxy v0.2
{0x401350, {0xEB, 0x10, 0x66, 0x62, 0x3A, 0x43, 0x2B, 0x2B, 0x48, 0x4F, 0x4F, 0x4B, 0x90, 0xE9, 0x98, 0xC0, 0x47, 0x00, 0xA1, 0x8B, 0xC0, 0x47, 0x00, 0xC1, 0xE0, 0x02, 0xA3, 0x8F, 0xC0, 0x47, 0x00, 0x52}},   // WildProxy v0.3
{0x401401, {0xE8, 0xB6, 0xFF, 0xFF, 0xFF, 0x50, 0x50, 0xFF, 0x35, 0x8B, 0xC0, 0x47, 0x00, 0xE8, 0xAD, 0x54, 0x07, 0x00, 0xFF, 0x35, 0x8B, 0xC0, 0x47, 0x00, 0xE8, 0xB6, 0x54, 0x07, 0x00, 0x5F, 0xC3, 0xB9}},   // WildProxy v0.3
{0x40C0B0, {0x70, 0x6C, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x31, 0x5C, 0x6F, 0x62, 0x6A, 0x5C, 0x52, 0x65, 0x6C, 0x65, 0x61, 0x73, 0x65, 0x5C, 0x53, 0x70, 0x65, 0x65, 0x64, 0x20, 0x48, 0x61, 0x63}},   // Speed Hack Simplifier 1.0
{0x40C0B0, {0x70, 0x6C, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x31, 0x5C, 0x6F, 0x62, 0x6A, 0x5C, 0x52, 0x65, 0x6C, 0x65, 0x61, 0x73, 0x65, 0x5C, 0x53, 0x70, 0x65, 0x65, 0x64, 0x20, 0x48, 0x61, 0x63}},   // Speed Hack Simplifier 1.1
{0x40C0B0, {0x70, 0x6C, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6F, 0x6E, 0x31, 0x5C, 0x6F, 0x62, 0x6A, 0x5C, 0x52, 0x65, 0x6C, 0x65, 0x61, 0x73, 0x65, 0x5C, 0x53, 0x70, 0x65, 0x65, 0x64, 0x20, 0x48, 0x61, 0x63}},   // Speed Hack Simplifier 1.2
{0x40E04E, {0x53, 0x68, 0x61, 0x64, 0x6F, 0x77, 0x42, 0x65, 0x61, 0x73, 0x74, 0x2E, 0x41, 0x53, 0x41, 0x46, 0x2D, 0x46, 0x*** 0x31, 0x34, 0x39, 0x42, 0x33, 0x31, 0x35, 0x35, 0x5C, 0x4D, 0x79, 0x20, 0x44}},   // Speed Hack Simplifier 1.3 Test
{0x4320F0, {0x53, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x45, 0x00, 0x52, 0x00, 0x53, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00}},   // Cheat Happens v3.9b1
{0x4340F0, {0x53, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x45, 0x00, 0x52, 0x00, 0x53, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00}},   // Cheat Happens v3.95b1/b2
{0x4360F0, {0x53, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x45, 0x00, 0x52, 0x00, 0x53, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00}},   // Cheat Happens v3.95b3
{0x440020, {0x5F, 0xE4, 0xAD, 0x60, 0x36, 0x56, 0x43, 0x4D, 0x92, 0xBD, 0xC8, 0x6F, 0xF8, 0xDE, 0xE1, 0xBD, 0x01, 0x00, 0x00, 0x00, 0x46, 0x3A, 0x5C, 0x44, 0x6F, 0x63, 0x75, 0x6D, 0x65, 0x6E, 0x74, 0x73}},   // Cheat Happens v3.96b2
{0x41F001, {0x60, 0xE8, 0x03, 0x00, 0x00, 0x00, 0xE9, 0xEB, 0x04, 0x5D, 0x45, 0x55, 0xC3, 0xE8, 0x01, 0x00, 0x00, 0x00, 0xEB, 0x5D, 0xBB, 0xED, 0xFF, 0xFF, 0xFF, 0x03, 0xDD, 0x81, 0xEB, 0x00, 0xF0, 0x01}},   // !xSpeed.net 2
{0x4217E0, {0x60, 0xBE, 0x00 ,0xD0, 0x41, 0x00, 0x8D, 0xBE, 0x00, 0x40, 0xFE, 0xFF, 0x57, 0xEB, 0x0B, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11}},   // !xSpeed.net 3
{0x420630, {0x60, 0xBE, 0x00, 0xC0, 0x41, 0x00, 0x8D, 0xBE, 0x00, 0x50, 0xFE, 0xFF, 0x57, 0xEB, 0x0B, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11}},   // !xSpeed.net 6
{0x5674D4, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xB8, 0x2C, 0x70, 0x56, 0x00, 0xE8, 0xC6, 0xFA, 0xE9, 0xFF, 0x8B, 0x1D, 0x98, 0xD8, 0x56, 0x00, 0x33, 0xC0, 0x55, 0x68}},   // Cheat Engine 5.0
{0x574EC0, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xB8, 0xE0, 0x49, 0x57, 0x00, 0xE8, 0xCE, 0x20, 0xE9, 0xFF, 0x8B, 0x1D, 0xF8, 0xB8, 0x57, 0x00, 0x33, 0xC0, 0x55, 0x68}},   // Cheat Engine 5.1.1
{0x574EEC, {0xE8, 0x8B, 0xEA, 0xF1, 0xFF, 0x8D, 0x45, 0xEC, 0xE8, 0x33, 0x56, 0xFF, 0xFF, 0xE8, 0x5A, 0x1F, 0xFD, 0xFF, 0x8B, 0x03, 0xBA, 0x68, 0x50, 0x57, 0x00, 0xE8, 0x6A, 0xE6, 0xF1, 0xFF, 0x8B, 0x03}},   // Cheat Engine 5.1
{0x4CBD70, {0x8D, 0x85, 0x7C, 0xFE, 0xFF, 0xFF, 0xBA, 0x03, 0x00, 0x00, 0x00, 0xE8, 0xB0, 0x8F, 0xF3, 0xFF, 0x8D, 0x85, 0x88, 0xFE, 0xFF, 0xFF, 0xBA, 0x04, 0x00, 0x00, 0x00, 0xE8, 0xA0, 0x8F, 0xF3, 0xFF}},   // Cheat Engine 5.1
{0x591F94, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xB8, 0x5C, 0x1A, 0x59, 0x00, 0xE8, 0x26, 0x50, 0xE7, 0xFF, 0x8B, 0x1D, 0x20, 0x89, 0x59, 0x00, 0x33, 0xC0, 0x55, 0x68}},   // Cheat Engine 5.2
{0x591FC0, {0xE8, 0x07, 0x23, 0xF0, 0xFF, 0x8D, 0x45, 0xEC, 0xE8, 0x1F, 0x4B, 0xFF, 0xFF, 0xE8, 0x76, 0x*** 0xFC, 0xFF, 0x8B, 0x03, 0xBA, 0x18, 0x21, 0x59, 0x00, 0xE8, 0xE6, 0x1E, 0xF0, 0xFF, 0x8B, 0x03}},   // Cheat Engine 5.2
{0x5839E7, {0x8D, 0x45, 0xB0, 0x50, 0x6A, 0x08, 0x8D, 0x85, 0x78, 0xFF, 0xFF, 0xFF, 0x50, 0xA1, 0xB0, 0xA1, 0x59, 0x00, 0x8B, 0x55, 0xA4, 0x8B, 0x04, 0x90, 0x50, 0xA1, 0x28, 0xA1, 0x59, 0x00, 0x50, 0xA1}},   // Cheat Engine 5.2
{0x5AA16C, {0xE8, 0x13, 0x40, 0xFF, 0xFF, 0xE8, 0x86, 0x2C, 0xFC, 0xFF, 0x8B, 0x03, 0xBA, 0xD4, 0xA2, 0x5A, 0x00, 0xE8, 0xC2, 0x98, 0xEE, 0xFF, 0x8B, 0x03, 0x83, 0xC0, 0x50, 0xBA, 0xF0, 0xA2, 0x5A, 0x00}},   // Cheat Engine 5.3
{0x4CBE2B, {0x8D, 0x55, 0xF0, 0xB9, 0x04, 0x00, 0x00, 0x00, 0x8B, 0xC7, 0xE8, 0x02, 0x15, 0xF5, 0xFF, 0x8B, 0x55, 0xF0, 0x8B, 0xC3, 0xE8, 0x8C, 0xF7, 0xFD, 0xFF, 0x8D, 0x55, 0xF0, 0xB9, 0x04, 0x00, 0x00}},   // Cheat Engine 5.3
{0x5CF354, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xB8, 0x44, 0xED, 0x5C, 0x00, 0xE8, 0x62, 0x7E, 0xE3, 0xFF, 0x8B, 0x1D, 0xD4, 0x5A, 0x5D, 0x00, 0x33, 0xC0, 0x55, 0x68}},   // Cheat Engine 5.4
{0x5CF440, {0xE8, 0x37, 0xA3, 0xFC, 0xFF, 0xE8, 0x8E, 0x*** 0xF9, 0xFF, 0x8B, 0x03, 0xBA, 0xA8, 0xF5, 0x5C, 0x00, 0xE8, 0x2A, 0xBD, 0xEC, 0xFF, 0x8B, 0x03, 0x83, 0xC0, 0x50, 0xBA, 0xC4, 0xF5, 0x5C, 0x00}},   // Chear Engine 5.4
{0x5CF43D, {0x8D, 0x45, 0xEC, 0xE8, 0x37, 0xA3, 0xFC, 0xFF, 0xE8, 0x8E, 0x*** 0xF9, 0xFF, 0x8B, 0x03, 0xBA, 0xA8, 0xF5, 0x5C, 0x00, 0xE8, 0x2A, 0xBD, 0xEC, 0xFF, 0x8B, 0x03, 0x83, 0xC0, 0x50, 0xBA, 0xC4}},   // Cheat Engine 5.4 
{0x5FECF4, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xB8, 0xE4, 0xE4, 0x5F, 0x00, 0xE8, 0x9E, 0x89, 0xE0, 0xFF, 0x8B, 0x1D, 0xEC, 0x62, 0x60, 0x00, 0x33, 0xC0, 0x55, 0x68}},   // Cheat Engine 5.5
{0x5FECF4, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xB8, 0xE4, 0xE4, 0x5F, 0x00, 0xE8, 0x9E, 0x89, 0xE0, 0xFF, 0x8B, 0x1D, 0xEC, 0x62, 0x60, 0x00, 0x33, 0xC0, 0x55, 0x68}},   // Cheat Engine 5.5
{0x5FED5B, {0xE8, 0x10, 0xC3, 0xE9, 0xFF, 0x8B, 0x0D, 0x64, 0x5D, 0x60, 0x00, 0x8B, 0x03, 0x8B, 0x15, 0x00, 0x1D, 0x55, 0x00, 0xE8, 0xFD, 0xC2, 0xE9, 0xFF, 0x8B, 0x0D, 0xC8, 0x5E, 0x60, 0x00, 0x8B, 0x03}},   // Cheat Engine 5.5
{0x12C5B8, {0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11, 0xDB, 0x72, 0xED, 0xB8, 0x01, 0x00, 0x00, 0x00, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11, 0xDB, 0x11, 0xC0, 0x01, 0xDB, 0x73}},   // UoPilot
{0x401414, {0x68, 0xA4, 0x22, 0x40, 0x00, 0xE8, 0xEE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x8E, 0xF7, 0x08}},   // Speed Hack 99.62t
{0x401E04, {0x68, 0x28, 0x20, 0x41, 0x00, 0xE8, 0xEE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE3, 0x90, 0x67, 0x9A}},   // SpotHack 1.1
{0x454181, {0xBE, 0x00, 0x90, 0x43, 0x00, 0x8D, 0xBE, 0x00, 0x80, 0xFC, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75}},   // MJB Perfect DL Bot
{0x59F001, {0xE8, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x50, 0x51, 0xEB, 0x0F, 0xB9, 0xEB, 0x0F, 0xB8, 0xEB, 0x07, 0xB9, 0xEB, 0x0F, 0x90, 0xEB, 0x08, 0xFD, 0xEB, 0x0B, 0xF2, 0xEB, 0xF5, 0xEB, 0xF6, 0xF2, 0xEB}},   // HahaMu 1.16
{0x40FBB6, {0x55, 0x8B, 0xEC, 0x6A, 0xFF, 0x68, 0x48, 0x3D, 0x41, 0x00, 0x68, 0x3C, 0xFD, 0x40, 0x00, 0x64, 0xA1, 0x00, 0x00, 0x00, 0x00, 0x50, 0x64, 0x89, 0x25, 0x00, 0x00, 0x00, 0x00, 0x83, 0xEC, 0x68}},   // Game Speed Changer
{0x438510, {0x60, 0xBE, 0x00, 0x20, 0x42, 0x00, 0x8D, 0xBE, 0x00, 0xF0, 0xFD, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // eXpLoRer
{0x4BCFA4, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xF0, 0x53, 0x56, 0x57, 0xB8, 0xC4, 0xCC, 0x4B, 0x00, 0xE8, 0xB1, 0x9B, 0xF4, 0xFF, 0x8B, 0x3D, 0xB0, 0x03, 0x4C, 0x00, 0x68, 0xDC, 0xD0, 0x4B, 0x00, 0x6A, 0x04}},   // Xelerator 1.4
{0x473BBC, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xF4, 0xB8, 0x04, 0x3A, 0x47, 0x00, 0xE8, 0xE0, 0x26, 0xF9, 0xFF, 0xA1, 0x1C, 0x5C, 0x47, 0x00, 0x8B, 0x00, 0xE8, 0x04, 0xBE, 0xFC, 0xFF, 0x8B, 0x0D, 0xE4, 0x5C}},   // Capotecheat(deltacholl)
{0x55DE8C, {0x87, 0xDE, 0xF7, 0xFA, 0x9F, 0xCA, 0x05, 0x5D, 0x83, 0x67, 0x02, 0x86, 0x59, 0xBF, 0xF1, 0xB6, 0x5B, 0x1F, 0x04, 0x6E, 0x79, 0x00, 0x18, 0x57, 0x8A, 0xD0, 0xA6, 0xFA, 0x8E, 0x5A, 0xE0, 0xD8}},   // Cheat4Fun v0.9 Beta
{0x493C90, {0x60, 0xBE, 0x00, 0xC0, 0x45, 0x00, 0x8D, 0xBE, 0x00, 0x50, 0xFA, 0xFF, 0x57, 0xEB, 0x0B, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11}},   // AutoBuff D-C
{0x416014, {0xB8, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0B, 0xC0, 0x74, 0x68, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x58, 0x05, 0x53, 0x00, 0x00, 0x00, 0x80, 0x38, 0xE9, 0x75, 0x13, 0x61, 0xEB, 0x45, 0xDB, 0x2D, 0x37}},   // HastyMu v0.1
{0x416014, {0xB8, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0B, 0xC0, 0x74, 0x68, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x58, 0x05, 0x53, 0x00, 0x00, 0x00, 0x80, 0x38, 0xE9, 0x75, 0x13, 0x61, 0xEB, 0x45, 0xDB, 0x2D, 0x37}},   // HastyMu v0.2
{0x401704, {0x68, 0x84, 0x24, 0x40, 0x00, 0xE8, 0xEE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x72, 0x80, 0x61, 0xF6}},   // MuPie HG v2
{0x401B28, {0x68, 0xD8, 0x2A, 0x40, 0x00, 0xE8, 0xF0, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xB9, 0xE3, 0x0E, 0xC3}},   // MuPie HG v3
{0x48C000, {0xFC, 0xCF, 0xAB, 0xE7, 0x6D, 0x3A, 0x89, 0xBC, 0xB2, 0x9F, 0x73, 0x23, 0xA8, 0xFE, 0xB6, 0x49, 0x5D, 0x39, 0x5D, 0x8A, 0xCB, 0x63, 0x8D, 0xEA, 0x7D, 0x2B, 0x5F, 0xC3, 0xB1, 0xE9, 0x83, 0x29}},   // Lipsum v1
{0x48C000, {0xFC, 0xCF, 0xAB, 0xE7, 0x6D, 0x3A, 0x89, 0xBC, 0xB2, 0x9F, 0x73, 0x23, 0xA8, 0xFE, 0xB6, 0x49, 0x5D, 0x39, 0x5D, 0x8A, 0xCB, 0x63, 0x8D, 0xEA, 0x7D, 0x2B, 0x5F, 0xC3, 0xB1, 0xE9, 0x83, 0x29}},   // Lipsum v2
{0xAF4014, {0xB8, 0x00, 0x00, 0x00, 0x00, 0x60, 0x0B, 0xC0, 0x74, 0x68, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x58, 0x05, 0x53, 0x00, 0x00, 0x00, 0x80, 0x38, 0xE9, 0x75, 0x13, 0x61, 0xEB, 0x45, 0xDB, 0x2D, 0x37}},   // FunnyZhyper v5
{0x4380F0, {0x53, 0x00, 0x5F, 0x00, 0x56, 0x00, 0x45, 0x00, 0x52, 0x00, 0x53, 0x00, 0x49, 0x00, 0x4F, 0x00, 0x4E, 0x00, 0x5F, 0x00, 0x49, 0x00, 0x4E, 0x00, 0x46, 0x00, 0x4F, 0x00, 0x00, 0x00, 0x00, 0x00}},   // MuPie v2 Beta
{0x453180, {0x60, 0xBE, 0x00, 0x80, 0x43, 0x00, 0x8D, 0xBE, 0x00, 0x90, 0xFC, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // Auto_Buff v5 Hack Rat
{0x454180, {0x60, 0xBE, 0x00, 0x80, 0x43, 0x00, 0x8D, 0xBE, 0x00, 0x90, 0xFC, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // Auto_Buff v9 Hack Rat
{0x405**** {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xEC, 0x53, 0x56, 0x33, 0xC0, 0x89, 0x45, 0xEC, 0xA1, 0xAC, 0x60, 0x40, 0x00, 0xC6, 0x00, 0x01, 0xB8, 0xD0, 0x50, 0x40, 0x00, 0xE8, 0x69, 0xEE, 0xFF, 0xFF, 0x8B}},   // Minimizer
{0x453180, {0x60, 0xBE, 0x00, 0x80, 0x43, 0x00, 0x8D, 0xBE, 0x00, 0x90, 0xFC, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // AE/HYBRID AEBOT 0.9
{0x4011EC, {0x68, 0xEC, 0xBC, 0x40, 0x00, 0xE8, 0xEE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x6C, 0x8F, 0x98, 0x36}},   // Jewel Drop Beta
{0x488070, {0x60, 0xBE, 0x00, 0x80, 0x45, 0x00, 0x8D, 0xBE, 0x00, 0x90, 0xFA, 0xFF, 0x57, 0xEB, 0x0B, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11}},   // Chaos Bot 2.1.0
{0x48A220, {0x60, 0xBE, 0x00, 0xA0, 0x45, 0x00, 0x8D, 0xBE, 0x00, 0x70, 0xFA, 0xFF, 0x57, 0xEB, 0x0B, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11}},   // MU-SS4 Speed Hack 1.2
{0x47A1C0, {0x60, 0xBE, 0x00, 0xF0, 0x45, 0x00, 0x8D, 0xBE, 0x00, 0x20, 0xFA, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // Bot MG-DK-ELF
{0x47A1C0, {0x60, 0xBE, 0x00, 0xF0, 0x45, 0x00, 0x8D, 0xBE, 0x00, 0x20, 0xFA, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // Comercio Bot
{0x455180, {0x60, 0xBE, 0x00, 0xA0, 0x43, 0x00, 0x8D, 0xBE, 0x00, 0x70, 0xFC, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // Dizzys Auto Buff
{0x401344, {0xEB, 0x10, 0x66, 0x62, 0x3A, 0x43, 0x2B, 0x2B, 0x48, 0x4F, 0x4F, 0x4B, 0x90, 0xE9, 0x98, 0x00, 0x47, 0x00, 0xA1, 0x8B, 0x00, 0x47, 0x00, 0xC1, 0xE0, 0x02, 0xA3, 0x8F, 0x00, 0x47, 0x00, 0x52}},   // GodMode
{0x435000, {0x60, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x50, 0x51, 0xEB, 0x0F, 0xB9, 0xEB, 0x0F, 0xB8, 0xEB, 0x07, 0xB9, 0xEB, 0x0F, 0x90, 0xEB, 0x08, 0xFD, 0xEB, 0x0B, 0xF2, 0xEB, 0xF5, 0xEB, 0xF6, 0xF2}},   // Mu Cheater 16
{0x401318, {0x68, 0xA4, 0x1F, 0x40, 0x00, 0xE8, 0xEE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xEC, 0x82, 0xBE, 0x15}},   // MU Utilidades
{0x4441C0, {0x60, 0xBE, 0x00, 0x00, 0x43, 0x00, 0x8D, 0xBE, 0x00, 0x10, 0xFD, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // MuBot
{0x481870, {0x60, 0xBE, 0x00, 0x30, 0x45, 0x00, 0x8D, 0xBE, 0x00, 0xE0, 0xFA, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}},   // Snd Bot 1.5
{0x401E04, {0x68, 0x28, 0x20, 0x41, 0x00, 0xE8, 0xEE, 0xFF, 0xFF, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x30, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xE3, 0x90, 0x67, 0x9A}},   // SpotHack 1.1
{0x534000, {0x8D, 0x8D, 0x51, 0x2E, 0x40, 0x00, 0x50, 0x51, 0x50, 0xFF, 0x95, 0xC7, 0x2C, 0x40, 0x00, 0x89, 0x85, 0x61, 0x2E, 0x40, 0x00, 0x58, 0x8D, 0x8D, 0x0F, 0x2E, 0x40, 0x00, 0x51, 0x50, 0xFF, 0x95}},   // Godlike (Magic Shield)
{0x555030, {0x74, 0x37, 0x8D, 0x85, 0xFB, 0x2C, 0x40, 0x00, 0x50, 0xFF, 0x95, 0xD7, 0x2C, 0x40, 0x00, 0x8D, 0x8D, 0x51, 0x2E, 0x40, 0x00, 0x50, 0x51, 0x50, 0xFF, 0x95, 0xC7, 0x2C, 0x40, 0x00, 0x89, 0x85}},   // Godlike
{0x401462, {0xE8, 0xD3, 0x16, 0x0E, 0x00, 0x8B, 0xD0, 0xE8, 0x8A, 0x67, 0x0D, 0x00, 0x5A, 0xE8, 0xE8, 0x66, 0x0D, 0x00, 0xE8, 0xBF, 0x67, 0x0D, 0x00, 0x6A, 0x00, 0xE8, 0xC4, 0x7B, 0x0D, 0x00, 0x59, 0x68}},   // Mu Philiphinas Cheat II
{0x401000, {0xB8, 0x44, 0xFF, 0x41, 0x00, 0x50, 0x64, 0xFF, 0x35, 0x00, 0x00, 0x00, 0x00, 0x64, 0x89, 0x25, 0x00, 0x00, 0x00, 0x00, 0x33, 0xC0, 0x89, 0x08, 0x50, 0x45, 0x43, 0x6F, 0x6D, 0x70, 0x61, 0x63}},   // ZhyperMu Packet Editor
{0x496CA0, {0x60, 0xBE, 0x00, 0x50, 0x46, 0x00, 0x8D, 0xBE, 0x00, 0xC0, 0xF9, 0xFF, 0xC7, 0x87, 0xA8, 0x50, 0x07, 0x00, 0x95, 0x01, 0xA9, 0x0C, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x0E, 0x90, 0x90, 0x90, 0x90}},   // D-C DupeHack 1.0
{0x499190, {0x60, 0xBE, 0x00, 0x30, 0x46, 0x00, 0x8D, 0xBE, 0x00, 0xE0, 0xF9, 0xFF, 0x57, 0xEB, 0x0B, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB, 0x75, 0x07, 0x8B, 0x1E, 0x83, 0xEE, 0xFC, 0x11}},   // Auto Combo
{0x470B74, {0x55, 0x8B, 0xEC, 0x83, 0xC4, 0xF0, 0xB8, 0x3C, 0x09, 0x47, 0x00, 0xE8, 0xEC, 0x53, 0xF9, 0xFF, 0xA1, 0x44, 0x2A, 0x47, 0x00, 0x8B, 0x00, 0xE8, 0xF8, 0x34, 0xFE, 0xFF, 0xA1, 0x44, 0x2A, 0x47}},   // AIO Bots (Collection)
{0x6B5000, {0x60, 0xE8, 0x00, 0x00, 0x00, 0x00, 0x5D, 0x50, 0x51, 0x0F, 0xCA, 0xF7, 0xD2, 0x9C, 0xF7, 0xD2, 0x0F, 0xCA, 0xEB, 0x0F, 0xB9, 0xEB, 0x0F, 0xB8, 0xEB, 0x07, 0xB9, 0xEB, 0x0F, 0x90, 0xEB, 0x08}},    // Nsauditor 1.9.1 (Packet Tool)
{0x4691A0, {0x60, 0xBE, 0x00, 0xE0, 0x44, 0x00, 0x8D, 0xBE, 0x00, 0x30, 0xFB, 0xFF, 0x57, 0x83, 0xCD, 0xFF, 0xEB, 0x10, 0x90, 0x90, 0x90, 0x90, 0x90, 0x90, 0x8A, 0x06, 0x46, 0x88, 0x07, 0x47, 0x01, 0xDB}}     // Super Bot
};





void SystemProcessesScan() {
  HANDLE hProcessSnap = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
  if(hProcessSnap != INVALID_HANDLE_VALUE)
  {
    PROCESSENTRY32 pe32;
    pe32.dwSize = sizeof(PROCESSENTRY32);

    if(Process32First(hProcessSnap, &pe32))
    {
      do
      {
        HANDLE hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, pe32.th32ProcessID);
        if(hProcess != NULL)
        {
          if(ScanProcessMemory(hProcess))
          {
            WinExec("taskkill /IM main.exe",10);
            ExitProcess(0);            
          }
        }
      }
      while(Process32Next(hProcessSnap, &pe32));
    }
  }

  CloseHandle(hProcessSnap);
}

bool ScanProcessMemory(HANDLE hProcess) 
{
  for(int i = 0; i < MAX_PROCESS_DUMP; i++)
  {
    char aTmpBuffer[MAX_DUMP_SIZE];
    SIZE_T aBytesRead = 0;
    ReadProcessMemory(hProcess, (LPCVOID)g_ProcessesDumps[i].m_aOffset, (LPVOID)aTmpBuffer, sizeof(aTmpBuffer), &aBytesRead);

    if(memcmp(aTmpBuffer, g_ProcessesDumps[i].m_aMemDump, MAX_DUMP_SIZE) == 0)
    {
      return true;
      break;
    }
}
return false;
}

void MainThread()
{
again:
    SystemProcessesScan();
    Sleep(350);
    goto again;
}



extern  "C"  __declspec(dllexport) void ;Main() {
  CreateThread(NULL,NULL,LPTHREAD_START_ROUTINE(MainThread),NULL,0,0);
  SystemProcessesScan();  

}

BOOL APIENTRY DllMain(HMODULE hModule, DWORD  ul_reason_for_call, LPVOID lpReserved) {
    return TRUE;
}

#ifdef _MANAGED
#pragma managed(pop)
#endif

Antihack.H:

// ----------------------------------------------------
//  Dll original: f1x / f1ksiu@hotmail.com
//  Creation date: 2008-06-26
//  Cheats Added: Mulegend.com.ar
//      Update:: 26-05-2009
//      Total cheats: 92
// ----------------------------------------------------

#ifndef ANTIHACK_ANTIHACK_H
#define ANTIHACK_ANTIHACK_H

#define MAX_DUMP_OFFSETS 92
#define MAX_DUMP_SIZE 32
#define MAX_PROCESS_DUMP 92


typedef struct ANITHACK_PROCDUMP {
  unsigned int m_aOffset;
  unsigned char m_aMemDump[MAX_DUMP_SIZE];
} *PANITHACK_PROCDUMP;

extern ANITHACK_PROCDUMP g_ProcessesDumps[MAX_PROCESS_DUMP];

void SystemProcessesScan();
bool ScanProcessMemory(HANDLE hProcess);


#endif //ANTIHACK_ANTIHACK_H

If u have a Main.exe with another Antihack.dll only paste this over old dll and done
How to hook: http://forum.muonlinehelp.com/post71.html#p71

DLL Project and Compiled attached

Download:
AntiHack DLL (5.2 KB)
Link 1: http://www.turboupload.com/wmouwbnqewic … L.rar.html
AntiHack Project (836.5 KB)
Link 1: http://www.turboupload.com/0ucpmlyyfgey … t.rar.html

Credits:
- Mulegend (RZ)
- f1x (dll source)

79

(0 replies, posted in Tools)

123 Flash Menu

Very good flash menu program, over 100 built-in templates (templates):

Screen:
http://img14.imageshack.us/img14/73/flashmenu.jpg

Download:
Link 1: http://www.2shared.com/file/8211753/312 … 11357.html


Credits:
*middea88

Mu Server ACG Season 4 FULL (Gs 1.00.87)

Server Information:

•-Blood Castle 100%
•-Devil Square 100%
•-Chaos Castle 100%
•-Illusion Temple 100%
•-Kantru 100%
• -Todos los skill 100%
• -Summoner 100%
• -3º raza 100%
• -Clanes 100%
• -BattleSoccer 100%
• -Creacion de items +9 - +13 100%
• -Mu Mail 100%
• -Consola de chat 100%
• -Combo bk 100%
• - Fenrirs 100%
• - Comando /add 100%
• -Cashop 100%
• -Skill Tree 100%
• -GM Ring 100%
• -GM Box 100%
• -Nuevos pets(Demon,Guardian y Rudolf) 100%
• -Season4 Sets 100%
• -Season4 Skills 100%
• -Socket System 100%
• -Season4 SkillTree 100%
• -Mapa Raklion 100%
• -Evento Raklion 100%
• -invasion Xmasy Santa Town 100%
• -Aida, Kantru3, Swamp of Calmness y Raklion y demas 100%
•- Summoner Season4 100%

Bugs FIX
0x0000000 BUG 100% FIX
DestroyGiocp BUG 100% FIX
Monster AI Element Error BUG 100% FIX
[HACKTOOL] : Packets Per Second BUG 100% FIX
IsSetItem Check error: (itemnum:-1) BUG 100% FIX
Life +16 added 28 Option BUG 100% FIX

Configuration file info:
ACG_Commands.ini 100% work
ACG_Common.ini 100% work
ACG_Event.ini 100% work
ACG_Message.ini 100% work
ACG_QwestSystem.ini 0% work in next release..
ACG_Vip.ini 100% work
ACG_MixRate.ini 100% work

Comands:
/post
/str
/agi
/vit
/ene
/cmd
/online
/make Only GM or Admins
/help
/pkclear

Download:
Server:
Link 1: http://www.turboupload.com/x89kfow0dpo3 … r.rar.html
Link 1: http://www.mediafire.com/download.php?ztjogim4qmd

Update 2:
Link 1: http://www.2shared.com/file/8211491/71d … eta02.html
Link 1: http://www.filefront.com/14447529/PreBeta0.2.rar/

Client:
Link 1: http://www.2shared.com/file/8097228/b7a … l_Jpn.html


Credits:
*Web Zen
*ACG
*Diel
*Ares
*solon p/ postar RZ

Muserver Season 4 Full + SubServer

This release is 100% working and tested. 
  EdataServer removed (reason: viruses) 
  New files of Oski's with new settings that are not made. 
  Added SubServer   
  Please do not say This is the same version, it is not! 
  Thanks everyone and have fun

. [Skill Effects] Soul Potion effect added [GS/GSCS]
. [Skill Effects] Bless Potion effect added [GS/GSCS]
. [Castle Siege] Castle Gates show with proper states [GS/GSCS]
. [Castle Siege] Castle Crown unlocks and locks in real time [GS/GSCS]
. [Castle Siege] Castle Crown announcement sent when shield Enabled/Disabled [GS/GSCS]
. Masters Exp Fix After Die [GS/GSCS]
. New Gate Moves, added random number padding, so ppl show up random place [GS/GSCS]
. [Duel System] Implemented winning announcement + Room + Score [GS/GSCS]
. [Duel System] At the end of Duel, duelers have 10 seconds to move [GS/GSCS]
. [Duel System] On login if player in Duel Map => moves to Volcanus [GS/GSCS]
. [Duel System] Sometime not all Duel parties get warped to the new map [GS/GSCS]
. [Duel System] Winning Duelere doesnt receive Gladiators Buf Fix [GS/GSCS]
. [Duel System] Duelers can not move until the duel is over [GS/GSCS]
. [Duel System] Request 'Only in Lorencia' fix [GS/GSCS]
. [Duel System] Spectator move = delete from the room [GS/GSCS]
. [Duel System] Fixed spectator move bug (stays invisible) [GS/GSCS]
. [Duel System] Spectators are not shown with correct invisible state fix [GS/GSCS]
. 3rd Level Wings ignore damage and attack rate % fix [GS/GSCS]
. 3rd Level Wings 5% damage return probability fix [GS/GSCS]
. Fixed Summoner Quest Item deletion (added level of quest item) [GS/GSCS]
. Increased Summoner Quest drop: Emperror, Ring of Glory and Churchil's Eye [GS/GSCS]
. Fixed Season 3 Quest Drop rate error for Feather, Horn and Flame [GS/GSCS]
/GSCS]
. [ExtraExp] Separate ExtraExp for Party's [GS/GSCS]
. [ExtraExp] Now works with party too [GS/GSCS]
. /add Command Limited by Stat Limit by Character [GS/GSCS]
. [Calc Character] Attack Damage Edition for all classes [GS/GSCS]
. [Calc Character] Defense Edition for all classes [GS/GSCS]
. [Calc Character] Successful Blocking for all classes [GS/GSCS]
. [Calc Character] Attack Speed for all classes [GS/GSCS]
. [Calc Character] Magic Speed for all classes [GS/GSCS]
. Auto Add Exp -1 Value FIXED [GS/GSCS]
. [ExtraExp] Exp FIXED [GS/GSCS]
. [ExtraExp] Added by Maps [GS/GSCS]
. [ExtraExp] Added by VIP (New System) [GS/GSCS]
. [ExtraExp] Added by Resets [GS/GSCS]
. [Command] /playerinfo "playername" ADDED [GS/GSCS]
. Need Resets Option for create guild ADDED [GS/GSCS]
. BC 8 LIMIT BUG by exit and enter FIXED [GS/GSCS]
. Marry Position FIX [GS/GSCS]
. Skill Tree Effects now work 100% [GS/GSCS]
. Skill Tree Icons for Skills no longer dissapear [GS/GSCS]
. New Messages added om SCF_Message.ini [GS/GSCS]
. Player Stat Add Limit by Class [GS/GSCS]
. 3rd Wings z28 Options (Wizzardy and HP recovery) added [GS/GSCS]
. 3rd Wings Excellent Options Added [GS/GSCS]
. Fix on Mana and HP recovery options in Soket System + Wings [GS/GSCS]
. Golden Fernir Options Added [GS/GSCS]
. ConnectMember AutoReloader [GS/GSCS]
. ConnectMember Reload Console Command (/cmemberload) [GS/GSCS]
. Soket Options Effects completed 100% [GS/GSCS]
. Added symbol states to global character calculation formula, works now [GS/GSCS]
. Fixed Soket Option for min/max skill attack power and magic deffence [GS/GSCS]
. Fixes to Summoner Life refill Send [GS/GSCS]
. Changes Sleep Skill resistance calculation [GS/GSCS]
. Master Evil Spirit of MG FIX [GS/GSCS]
. Magic Circle ReCast FIX [GS/GSCS]
. New Duel System [GS/GSCS]
. Soket Options Additional Stats Fix [GS/GSCS]
. MISSING INFORMATION Error Message Fix during server transfer [GS/GSCS]
. Anti-Hack for 3rd Class Quest changed and minor fixes were done [GS/GSCS]
. Added support for more MAPS, up to 255 maps [GS/GSCS]
. SkyEvent Fixed ID storage error (KillCount, InEvent and Win Prize) [GS/GSCS]
. SkyEvent Mobs do not appear when event starts FIX [GS/GSCS]
. Anti-Hack System for Skill Learning, Dropping Fake Boxes and more [GS/GSCS]
. Fix on Learning skill 230 (Item 7707) Had wrong Item [GS/GSCS]
. Changes to the EXC option generation method of the eventitembags [GS/GSCS]
. [Custom Events] SkyEvent getting Stuck after running once Fix [GS/GSCS]
. Fix for EventItem bags (min, max level, zOption random) [GS/GSCS]
. Fix for Reset System info Re-Request [GS/GSCS]
. Guild SQL Injection Fix [GS/GSCS]
. BC 8 LIMIT [GS/GSCS]
. Auto Add Exp FIXED [GS/GSCS]
. Suspicious merchant Moss Event [GS/GSCS]
. Excellent Shops [GS/GSCS]
. Raklion Event [GS/GSCS]
. Marry Square System [GS/GSCS]
. [Command] /getmarry [GS/GSCS]
. Player Class ofwerflow auto fix (on login & on logout) [GS/GSCS]
. Mastering Info Receive Check [GS/GSCS]
. Marry Info Receive Check [GS/GSCS]
. Resets Info Receive Check [GS/GSCS]
. PCPoints Info Receive Check [GS/GSCS]
. Auto Add Exp in Safe-Zone Option [GS/GSCS]
. Allow JOH Ancient Item Option [GS/GSCS]
. Allow Excellent Ancient Item Option [GS/GSCS]
. Reset Master Option Add for Remove previous resets [GS/GSCS]
. Reset SP System Doesnt read FIX [GS/GSCS]
. Item Move Limit FIX [GS/GSCS]
. Enter VIP Server without be VIP FIX [GS/GSCS]
. Skill Tree Level Up Points (Reading INI) FIX [GS/GSCS]
. SCFDB v3.4 FINAL VERSION - With Unicode Support
. Warehouse vs Move Anti-Hack implemented, prevent duping [GS/GSCS]
. Magic Circle Skill Fully Works [GS/GSCS]
. Season 3 Quest Item Req Count opt Added [GS/GSCS]
. Random game DC [Caused by: It's not his magic [ACCOUNT][CHAR] . ] [GSCS]
. Quest Anti-Hack fix against gaining points [GS/GSCS]
. Added new ini file for SkillTree System SCF_SkillTree.ini [GS/GSCS]
. Barraks and Refuge Quests killcount loading through SCF_Season3.ini [GS/GSCS]
. Dont add Event monsters if the events are Dissabled [GS]
. SCFdb Fixed [GS/GSCS]
. Extra Exp for VIP users in normal GS Fixed [GS/GSCS]
. Item Socket Recovery option fixed [GS/GSCS]
. BC Crash FIX [GS]
. Quest Anti-Hack implemented against paket editing and item check added [GS/GSCS]
. [Spawn] Monsters dont Reappear when died FIX [GS/GSCS]
. [Custom Events] Monsters dont appear FIX [GS/GSCS]
. [Custom Quest] Profession Change! - ADDED [GS/GSCS]
. Reset System for Masters different of Normal Characters [GS/GSCS]
. Master Skill tree server move visual bug fix [GS/GSCS]
. Season 4 Soket System 'RECOVERY' from old system included [GS/GSCS]
. Fixed Quest Class overflow (for multireset servers, that reset quests) [GS/GSCS]
. Character looses exp at max level if he is not 3rd Class [GS/GSCS]
. After LevelUP summoner has wrong HP [GS/GSCS]
. Summoner DC if DL uses firescream not far away [GS/GSCS]
. Summoner HP inconsistancies during DIE, Login, Warp [GS/GSCS]
. Kalima Gates Fixed for DL and MG (could not move to kalima 2 to 7) [GS/GSCS]
. Explotion Skill Drink FIX [GS/GSCS]
. Magic Circle Skill Drink FIX [GS/GSCS]
. Reduce Dmg Shield Skill Drink FIX [GS/GSCS]
. Five Shot Skill Drink FIX [GS/GSCS]
. Sword Slash Skill Drink FIX [GS/GSCS]
. Lighting Storm Skill Drink FIX [GS/GSCS]
. Birds Skill Drink FIX [GS/GSCS]
. After LevelUP summoner has wrong HP [GS/GSCS]
. Summoner DC if DL uses firescream not far away [GS/GSCS]
. Summoner HP inconsistancies during DIE, Login, Warp [GS/GSCS]
. Kalima Gates Fixed for DL and MG (could not move to kalima 2 to 7) [GS/GSCS]
. Item Move Limit FIX [GS/GSCS]
. Master SkillTree Skills dmg fix [GS/GSCS]
. Master SkillTree MaxLife Show Fine on Connect FIX [GS/GSCS]
. Master IceStorm much damage fixed [GS/GSCS]
. Mastering Level fix, no more going over the Max Level [GS/GSCS]
. Mastering Level fix, no more levelup points after max level [GS/GSCS]
. If CryWolf event has been lost, NPC doesnt dissapear [GSCS]
. Visual Effect for altar user missing [GSCS]
. Fixed CryWolf Altar visual States [GSCS]
. ChaosCardProbability FIX [GS/GSCS]
. Monster AI Element FIX [GS/GSCS]
. Destroy GIOCP FIX [GS/GSCS]
. Rebuilt Mastering Level-Up system, no more levelup after max level [GS/GSCS]
. Socket System Mix of Spear Seed Level Fix [GS/GSCS]
. Anti-Hack System for Lehap improved -> added trade states [GS/GSCS]
. Anti-Hack System for Warp and Gate Moves added against item duping [GS/GSCS]
. When kill a pk you become a pk [GS/GSCS]
. Socket System Box-To-Box GS crash issue fixed [GS/GSCS]
. Added Switch to Enable/Disable EXC drop of Socket Items (default: off) [GS/GSCS]
. When u try to upgrade the socket item in chaos goblin machine, sockets vanish [GS/GSCS]
. Fixed item delition from Socket machine if moved from-to same position [GS/GSCS]
. Fixed EventItemBag names messup, added new EventItemBags [35-39] [GS/GSCS]
. New Transformation Ring of Snow Man [GS/GSCS]
. Summoner First wings with PET Visual BUG on Selection Screen FIX [GS/GSCS]
. Summoner First wings with PET Visual BUG on Game FIX [GS/GSCS]
. Map Move FIX [GS/GSCS]
. Reset Mail Send and Check FIX [GS/GSCS]
. Santa's NPC (468 to 475) Shops Added [GS/GSCS]
. Santa Invitation Warp to Santa Map [GS/GSCS]
. GS Packets recv from SCFdb fixes for SCFdb3 [GS/GSCS]
. [Command] /addbuff fixes [GS/GSCS]
. Marry bad field FIX [GS/GSCS]
. Doesnt load Marry settings FIX [GS/GSCS]
. Doesnt save the sometimes SkillTree [GS/GSCS]
. Does not Increase damage by +11 [item with any type of sockets] [GS/GSCS]
. VipMoney Recv FIX [GS/GSCS]
. Reset System send mail with req items in reset level [GS/GSCS]
. Reset System add luck, opt, skill, level on item req. [GS/GSCS]
. DL Cant equip rings, pendants, and accesories FIX [GS/GSCS]
. Item(kor).txt added Summoner Row [GS/GSCS]
. Item(kor).txt can add 3 value for masters example (1 dw 2 sm 3 gm) [GS/GSCS]
. Map Move Server in GS does not support maps with index over 50 [GS/GSCS]
· Cant dissable shield protecting the crown in castle siege event [GSCS]
. Visual effects do not show on monsters and characters when seen on screen [GS/GSCS]
. Night Skill Addition Fix (on Monster die, complete structure clean) [GS/GSCS]
. PCPoint Shop Dupe FIX [GS/GSCS]
. SCF_EventManagement.dat new system [GS/GSCS]
. Illusion Temple Skins [GS/GSCS]
. Married People cant TRACE inside Events FIX [GS/GSCS]
. Happy Hour Exp FIX [GS/GSCS]
. Checksum Main FIX [GS/GSCS]
. Quest DarkElf FIX [GS/GSCS]
. Fixed Improper CheckSum combination for delete socket option [GS/GSCS]
. On Item Bless, JOH, JOL and so on... Socket options visually dissapear [GS/GSCS]
. GM Logo Icon Fix on top of the players head [GS/GSCS]
. Lehap Trade-Dupe Method [GS/GSCS]
· Have to hold control down to attack players [GSCS]
· Not allowed to switch char while in CS [NOT A BUG!!!][WEBZEN PROTECTION] [GSCS]
. Transformation Ring buffs and effects during equip fix [GS/GSCS]
. Socket System Mix: Remove Option, item delition FIX [GS/GSCS]
. Socket System Engine change [crash fix, mem fix, options dissapear fix] [GS/GSCS]
. Season 4 Socket Item drop added + new options SCF_Season4.ini [GS/GSCS]
. 75% Less Memory usage implementation [New exe + dll tech] [GS/GSCS]
. Season 4 Chaos Box Mix Delete option from item [GS/GSCS]
. Season 4 Chaos Box Mix Insert option in item [GS/GSCS]
. Implemented SCF_SocketItems.txt to read Socket Items [GS/GSCS]
. Season 4 Chaos Box Mix Seed Spear (Success/Fail) [GS/GSCS]
. Season 4 Chaos Box Mix Seed Jewel (Success/Fail) [GS/GSCS]
. Item Dissapear from inventory fix (move item function) [GS/GSCS]
. Season 4 Socket Options work on Equip [GS/GSCS]
. Season 4 Chaos Box created [item move inv<->box] [GS/GSCS]
. Season 4 Item Move on same spot crash fix [GS/GSCS]
. New Player Global Structure (crash/delay fix for some cases) [GS/GSCS]
. Anti-ALT-F4 Bug System [Rollback Fix][On Chaos Mix] [GS/GSCS]
. Anti-ALT-F4 Bug System [Rollback Fix][On Server Move] [GS/GSCS]
. Can not Sell to NPC equipped items, anti-disapear of items [GS/GSCS]
. Season 4 Options Warehouse Load & Save [GS/GSCS]
. Season 4 Items with new options drop and pickup Fix [GS/GSCS]
. Season 4 Options Inventory Load & Save [GS/GSCS]

This is the 9th version of the file and here are the fixes:

Adds and fixes
-Fixed error CashShop main.exe
  Added map and NPC work DuelSystem
  -Fixed 100% server CashShop
  -Fixed 100% map moves
  -Fixed NPC Text.bmd Duel to show English
  Added music to the client for 100% customer fact
  -Eliminated Sky event to make New MonsterSetBase
  Added completely generates classic for all maps:)
  -Fixed all missions and NPC moves
  -Fixed client to check the search for tell kills 3 monsters
  Changed Gameserver_CS Gameserver and tomatoes (sorry for nick not remember) to crack past.
  Crywolf.dat fixed with the new information.

GM and Admin Commands:

-/item
-/gmove
-/skin
-/addbuff
-/pkset
-/ring
-/gg
-/gmoveall
-/whois
-/clearinv
-/clearinvall
-/status
-/addskill
-/spawn
-/setmoney
-/online
-/vipstatus
-/fireworks
-/disconnect
-/banchar
-/unbanchar
-/banacc
-/unbanacc
-/pkclear

Players Commands:

-/pkclear
-/move
-/addstr
-/addagi
-/addene
-/addvit
-/addcom
-/serverinfo
-/reset
-/level
-/post  - Fixed
-/marry - Fixed

V.I.P Commands:

-/vipbuylist
-/vipbuy
-/viprenew
-/vipstate

GameServer:
http://img97.imageshack.us/img97/218/1gs.jpg

GameServer_CS:
http://img80.imageshack.us/img80/2259/2gscs.jpg

http://img210.imageshack.us/img210/1149/90810992.jpg

Crywolf:
http://img57.imageshack.us/img57/9788/4crywolf.jpg

NewSkill:
http://img80.imageshack.us/img80/6624/5newskill.jpg

SocketSystem:
http://img80.imageshack.us/img80/1118/6socketsystem.jpg

New Stats 65 000:
http://img70.imageshack.us/img70/8118/7newstats65000.jpg

New MonsterSetBases:
http://img39.imageshack.us/img39/618/8newmonstersetbases.jpg

http://img200.imageshack.us/img200/7184/52422346.jpg

CashShop Server:
http://img185.imageshack.us/img185/2295/10cashshopserver.jpg

Castle Siage:
http://img23.imageshack.us/img23/4026/11castlesiage.jpg

Chaos Castle:
http://img14.imageshack.us/img14/1120/12chaoscastle.jpg

Server Information::

- Wingi 3 lvl 100%
- Quest 3 for class 3 - 100%
- Socket System - 100%
- Master Skill Tree - 100%
- Summoner skills - 100%
- All Maps - 100%
- PC Point System - 100%
- Guild War - 100%
- Guild Alliance - 100%
- Guild Alliance Chat - 100%
- Guild Hostility - 100%
- Battle Soccer - 100%
- Duel - 100%
- Party - 100%
- Personal Store - 100%
- Lahap - 100%
- Elf Soldier - 100%
- Delete Character - 100%
- Delete Guild - 100%
- Chat - 100%
- Mu Mail - 100%
- GM Command - 100%
- Players Command - 100%
- 2nd Class Quest - 100%
- Marlon Quest - 100%
- Pet Trainer - 100%
- Pet Creation - 100%
- Chaos Machine Combination - 100%
- Party Zen Bug - 100%
- Skill - 100%
- EventItemBag - 100%
- Bug CP - 100%
- Potion Bug - 100%
- Ancient Items - 100%
- Dark Horse - 100%
- Dark Raven - 100%
- All Box'y - 100%
- Swamp of calmness - 100%
- Duel Map - 100%
- Season 4 Shop - 100%
- Season 3 Shop - 100%
- Season 3 Skill - 100%
- Season 4 Skill - 100%
- Season 3 NPC - 100%
- Season 4 NPC - 100%
- Season 3 Items - 100%
- Season 4 Items - 98%
- Season 3 mobs - 100%
- Season 4 mobs - 100%
- Season 3 Maps - 100%
- Season 4 Maps - 100%
- New rings - 100% 

Events:

- Blood Castle Event - 99%
- Devil Square Event - 100%
- Chaos Castle Event - 100%
- Boss Attack Event -100%
- Kantru Event - 100%
- Illusion Teample Event - 100%
- Happy Hour Event - 100%
- Golden Invasion - 100%
- White Wizzard - 100%
- Rabbit Event - 100%
- Sky Event - 100%
- Blue Event - 100%
- Hit and up Event - 100%
- Halloween Event - 100%
- Raklion Event - 100%
- Merchant Moss - 100%
- Duel Event - 100%
- Castle Siege - 100%
- Crywolf - 100% 

Client Information:
Version: 22895 / 1.05.50
IP: 87.246.27.53
Serial: ImperialMuOnline

Change IP:
1.ConnectServer \ Datos de programa \ ServerList [BoR]. Dat
2.Data \ IpList.dat
3.Data \ Lang \ Kor \ CommonLoc.cfg
4.Data \ MapServerInfo.dat
5.Data \ MapServerInfo_CS.dat

Change pass SA:
1.Event \ Datos de programa \ SvConfig.ini
2.ExDB \ ExDB.ini
3.Ranking \ SvConfig.ini
4.Programas \ SCFDB \ SCFdb.ini
5.GameServer \ SCF_Connect.ini
6.GameServer_CS \ SCF_Connect.ini
7.SubServer \ GameServer \ SCF_Connect.ini

Download:
Client:
LINK 1: Download

Main:
LINK 1: Download
LINK 2: Download

Server Files:
LINK 1: Download
LINK 2: Download



Credits:
- WebZen
- SCF Team
- Tomatoes
- Plasma32
- Diablo
- Fuente:DT

82

(5 replies, posted in Tools)

scanned and appoved for now , use at your own risk as not tested and deemed 100% safe unless reported otherwise

scan link : http://virusscan.jotti.org/en/scanresul … 09df2af380

Web shop season 4 + new items

Download:
LINK 1: Download
LINK 2: Download
LINK 3: Download

84

(0 replies, posted in Website releases)

WebCrazy Admin Painel !

http://img5.imageshack.us/img5/6483/loginq.png

Download:
Link 1: http://www.megaupload.com/?d=OND4CF3D


Credits:

Beto Monte !

UCD Season IV Bugless 1.00.90 JPN

About Release
- All DataBases + Correct ODBC
- Packed GS + GS_CS v1.00.90
- 99.9% Bug Free
- Stable (tested)
- JPN and KOR protocols

-Blood Caslte (All) 100%
-Devil Square (All) 100%
-Chaos Caslte (All) 100%
-Illusion Temple 100%
-Kantru Event 100%
-Skill Tree 100%
-Summoner 100%
-Evolution 3rd Class 100%
-Guilds 100%
-Guild Wars 100%
-BattleSoccer 100%
-Items to +9 - +13 100%
-Mu Mail 100%
-Chat 100%
-BK Combo 100%
-Fenrir Mix 100%
-Add Stat CMD 100%
-Guild Alliance 100%
-Swamp Of Calmness 100%
-Cash shop 100%
-Seals 100%
-Period Items (New buffs from Season3 Ep2 Pre Season4 CHS) 100%
-Luky Simbol (Increase Succes % on Chaos Machine) 100%
-Premium Tickets BC, DS, Kalima, Illusion Temple 100%
-Summoner Card (To create summoner GMO Style) 100%
-Ticket Assemble Item (If you fail to +10, +11, +12 or +13 item doesn't dissapear) 100%
-Chaos Card For Beginers (Create weps CLS CNB & CDA) 100%
-Chaos Card (Create items on NPC Chaos Card)100%
-Chaos Card Premium (Create BETTER Chaos Card Items) 100%
-Reset Points Pots (Reset 200 point with special potions) 100%
-Skill Tree 100%
-GM Ring 100%
-GM Box 100%
-New Pets (Demon & New Guardian) 100%

- New Sets Season4
- New Weps Season4
- New Skills Season4
- New Socket System
- New SkillTree Season4
- New Map Raklion
- New Event Raklion
- New Invation Xmas Event & Santa Town
- New Talismans
- New Pets (Rudolf)
- New Golden Mobs in Aida, Kantru3, Swamp of Calmness & Raklion
- New Buffs
- Summoner Season4 100%

You will see different main.exe in client. main_jpn_m is the final main we work on tyring to fix this problem.
* Note
-DLL is in GS folder?
-Delete UCD.ini from Gameserver\data folder and see what's gameserver says (if gameserver.exe and ucd90.dll it's packed in one files gameserver.exe ) should say UCD.ini is missing.

Server Files :
Link 1: http://www.filefactory.com/file/ah5h...90_RELEASE_rar
Link 2: http://www.2shared.com/file/8068920/6f1 … LEASE.html
Link 3: http://www.turboupload.com/ytw9bh94fjhx … E.rar.html
Link 4: http://www.filehosting.org/file/details … ELEASE.rar

Client Files:
Link 1: http://4storing.com/vhm8fd/66c130cca2d7 … 188e3.html
Link 2: http://www.2shared.com/file/8061028/131 … nt_S4.html

Credits:
- WebZen
- UCD
- Shatter (CzF Team) for some of the DataBases
- darckalan for release to public

Download Movereq 100%+movereq.bmd + Main cracked + Hexedit

Link 1: http://www.2shared.com/file/8040013/6d9 … vereq.html
Link 2: http://4storing.com/lvv0qm/4068645666c3 … 1f16e.html
Main Cracked here + HexEdit
IP: YOU-IP-HERE
SERIAL:SERIAL-HERE
VERSION: 22975 = 1.06.30

Guide how edit the main with HexEdit:
http://img177.imageshack.us/img177/7366/51616280.jpg

http://img35.imageshack.us/img35/1986/66206073.jpg

http://img24.imageshack.us/img24/4803/50616537.jpg

http://img148.imageshack.us/img148/9780/31343805.jpg

// DarkDown 2009 Argentina darkdown@argentina.com Thx Special CzF
//index    Move Name    Move Name    Zen    Level    Gate
1    "Arena"        "Arena"        2000    50    50
2    "Lorencia"    "Lorencia"    2000    10    17
3    "Noria"        "Noria"        2000    10    27
4    "Devias"    "Devias"    2000    10    22
5    "Devias2"    "Devias2"    2500    10    72
6    "Devias3"    "Devias3"    3000    10    73
7    "Devias4"    "Devias4"    3500    20    74
8    "Dungeon"    "Dungeon"    3000    20    2
9    "Dungeon2"    "Dungeon2"    3500    20    6
10    "Dungeon3"    "Dungeon3"    4000    20    10
11    "Atlans"    "Atlans"    4000    70    49
12    "Atlans2"    "Atlans2"    4500    80    75
13    "Atlans3"    "Atlans3"    5000    90    76
14    "LostTower"    "LostTower"    5000    50    42
15    "LostTower2"    "LostTower2"    5500    50    31
16    "LostTower3"    "LostTower3"    6000    50    33
17    "LostTower4"    "LostTower4"    6500    60    35
18    "LostTower5"    "LostTower5"    7000    60    37
19    "LostTower6"    "LostTower6"    7500    70    39
20    "LostTower7"    "LostTower7"    8000    70    41
21    "Tarkan"    "Tarkan"    8000    140    57
22    "Tarkan2"    "Tarkan2"    8500    140    77
23    "Icarus"    "Icarus"    10000    170    63
24    "Aida"        "Aida"        8500    150    119
25    "Aida2"        "Aida2"        8500    150    140
26    "Kanturu"    "Kanturu"    9000    160    138
27    "Kanturu2"    "Kanturu2"    9000    160    141
28    "Kanturu3"    "Kanturu3"    12000    230    139
29    "Elbeland"    "Elbeland"    2000    10    267
30    "Elbeland2"    "Elbeland2"    2500    10    268
31    "SwampOfCalmness" "SwampOfCalmness" 12000 400    273
32    "Raklion"    "Raklion"    15000    280    287
33    "LorenDeep"    "LorenDeep"    15000    10    104
34    "Vulcanus"    "Vulcanus"    15000    30    294
35    "Crywolf"    "Crywolf"    5000    10    118



Taken from:
DarkDown< Edit Movereq(kor) and Movereq.bmd and Guide how edit main
CzF for Help to ALL

Repack by Oski 7.11.56 (GS+SUB+CS) Ver:4.9.8

Files tested on SQL Server 2000 and Windows Vista x64 + SP2
NO CRASH GS, SUB & GS_CS !!! 100% TEST AND WORK

- GameServer ver. 7.11.56 Cracked Season4
- Sub GameServer ver. 7.11.56 Cracked Season4
- GameServer_CS ver. 7.11.56 Cracked Season4
- FIX SCFDB3.exe (New ver: 3.4.1.5 )!!!
- JoinServer without encryption MD5
- Base data without encryption MD5
- MuMaker 1.12

Repack 7.11.56 (ver: 4.9.6):

- Add SUBServer GS 7.11.56 - 100%
- Add GameServer CS 7.11.56 - 100%
- MapServerInfo.dat configured in SubServer and CS - 100%
- MapServerInfo_CS.dat configured in SubServer and GS_CS - 100%
- Fix Warp - 100%
- Fixed Event Config - 100%
- Translated Shop 0-29 - 100%
- Translated Eventimbag 0-40 - 100%
- Added Vulcan Warp Map +;] - 100%
- Fixed Quest.bmd & Quest (Kor). Txt - 100%

Repack 7.11.56 (ver: 4.9.7) :

- Sky Event Fix - 100%
- Text CryWolf Event Fix - 100%
- Halloween Event Fix - 100%
- Skill Tree LVL & Skill Fix - 100%
- Fix Text Castle Siege (Patch) - 100%
- Add file monster50.bmd (Patch) - 100%
- MuOnline.bak (No-md5) Fix - 100%
- Add New DB Files MU2003_EVENT_DATA.bak - 100%
- Add Full Items Eventimbags - 100%
- Fix Text.bmd - 100%
- Fix Arena World7 - 100%
- Fix New Patch 1.05X+ - 100%

Repack 7.11.56 (ver: 4.9.8) :

- Exc Drop items in eventimbags Red Chaos Box, Cherry Blossom Box..& test - 100%
- Fix Kundun (Drop Ancient, HP, Def,RegenTime... - 100%
- Fix Auto DC in Shop 7 (Devias) - 100%
- Fix socket items - 100%
- Translate BuffEffect.bmd - 100%
- Fix 65k stats (New MuOnline.bak) - 100%
- Fix mix wings 3 lvl & tested (add screens) - 100%
- Fix Erohim Drop exc items (Land of Trial) - 100%
- Fix new Patch 1.05T+ ver:4.10.1 (I'm Sorry 1.05X+ is Wrong) - 100%

Bugs:

- Visual Bug Rudolph , Hada and Demon
- Blood Castle No wings ;/

What works? (Tested)

- Wings 3 lvl 100% (mix wings - 2 procedures, bless, soul, JOL, repair)
- Quest 3 rd class for all professions to 100%
- Socket System 100%
- Master Skill Tree 100%
- Summoner with skilli and books 100%
- All Maps
- PC Point System - 100%
- Guild War - 100%
- Guild Alliance - 100%
- Guild Alliance Chat - 100%
- Guild Hostility - 100%
- Battle Soccer - 100%
- Duel - 100%
- Party - 100%
- Personal Store - 100%
- Lahap - 100%
- Elf Soldier - 100%
- Delete Character - 100%
- Delete Guild - 100%
- Chat - 100%
- Mu Mail - 100%
- GM Command - 100%
- Players Command - 100%
- 2nd Class Quest - 100%
- Marlon Quest - 100%
- Pet Trainer - 100%
- Pet Creation - 100%
- Chaos Machine Combination - 100%
- Party Zen Bug - 100%
- Skill - 100%
- EventItemBag - 100%
- Bug CP - 100%
- Potion Bug - 100%
- Ancient Items - 100%
- Excellent Itemy in the shop - 100%
- Dark Horse Dark & révén - 100%
- All Box'y - 100%
- Swamp of calmness - 100%
- Vulcan Map - 100%
- Season 4 Shop - 100%
- Season 3 Shop - 100%
- Season 3 Skill - 100%
- Season 4 Skill - 100%
- Season 3 NPC - 100%
- Season 4 NPC - 100%
- Season 3 Items - 100%
- Season 4 Items - 98%
- Season 3 mobs - 100%
- Season 4 mobs - 100%
- Season 3 Maps - 100%
- Season 4 Maps - 100%
- New rings - 100%

Eventy:

- Blood Castle Event - 99%
- Devil Square Event - 100%
- Chaos Castle Event - 100%
- Boss Attack Event -100%
- Kantru Event - 100%
- Illusion Teample Event - 100%
- Happy Hour Event - 100%
- Golden Invasion - 100%
- White Wizzard - 100%
- Rabbit Event - 100%
- Sky Event - 100%
- Blue Event - 100%
- Hit and up Event - 100%
- Halloween Event - 100%
- Raklion Event - 100%
- Merchant Moss - 100%
- Duel Event - 100%
- CryWolf - 100%
- Castle Siege to check

Server Files Repack Ver-4.9.8:
Link 1: http://4storing.com/2k8iks/ab3a7fb84df4 … a2845.html
Link 2: http://www.2shared.com/file/8039702/c9e … r-498.html

Patch Ver-4.10.1:
Link 1: http://www.2shared.com/file/8039542/ae0 … r4101.html
Link 2: http://www.turboupload.com/7s01nuklwzn6 … 1.rar.html

Client:
Link 1: http://www.2shared.com/file/7689388/b12 … _Full.html
Link 2: http://4storing.com/5t1fki/33480f561acf … 67609.html

Credits
- WebZen
- SCF Team
- Tomatoes
- Plasma32
- Oski (Repack, New DB Files, Translate & Fix Bugs

88

(1 replies, posted in Tools)

The setup and configurations are almost the same as MS-SQL Server 2000. Anyone who can use a computer can easily setup v2005 without any problems. Here is a release of all which you need.

- Why Express Edition?
Because the Entreprise Edition is not free! Must pay for it. The express edition works just fine. Give it a try, you will love it.

- How to connect?
Use your local system account. Then use the Agent and the Tools to manage the MS-SQL Server.

- What is MS-SQL Server Shield?
This can be used with v2000 and v2005.
If you have, for example, a website on one host and the SQL Server running on a different host, networks differing from eachother, and your website interacts with the SQL Server lets say by using PHP. This means there is traffic. Data packets being sent. The Server Shield software basically boosts the encryption strenght of these packets, hence assuring more secure operations. You need to activate this with a key, which you purchase online for real money.


1.Link 1 MS-SQL Server 2005 Express Edition : http://www.2shared.com/file/8030644/38 … _2005.html
1.Link 2 MS-SQL Server 2005 Express Edition : http://www.turboupload.com/eb46g7f4q73i … 5.EXE.html

2.Link 1 MS-SQL 2005 Express Agent : http://www.2shared.com/file/8030667/93 … Agent.html

3.Link 1 MS-SQL Server 2005 Client Tools: http://www.2shared.com/file/8030735/1a … Toolz.html

4.Link 1 MS-SQL Server Shield: http://www.2shared.com/file/8030698/84 … _MSDE.html


Credits:
Alexandre and the CzF Staff Team