Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Kal Online
You last visited: Today at 15:38

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



Coding service

Discussion on Coding service within the Kal Online forum part of the MMORPGs category.

Reply
 
Old 10/26/2021, 16:11   #16
 
elite*gold: 0
Join Date: Nov 2011
Posts: 222
Received Thanks: 50
.
A.k.A. is offline  
Old 10/26/2021, 18:41   #17
 
elite*gold: 0
Join Date: Nov 2007
Posts: 14
Received Thanks: 0
autologin

hi, im interested in this autologin script but dont know how to compile or make it working

PHP Code:
/*
Auto Login by SoniKk69 via system.ini
*/
#include <iostream>
#include <fstream>
#include <stdio.h>
#include <io.h>
#include <fcntl.h>
#include <iomanip>
#include <math.h>
#include <string>
#include <time.h>
#include <stdlib.h>
#include <windows.h>
#include <process.h>
#pragma pack(1)

using namespace std;

#define ASM            void __declspec(naked)
#define    EXPORT        __declspec(dllexport) __cdecl
#define    THREAD        DWORD WINAPI
#define Naked __declspec( naked )
#define INST_NOP 0x90
#define INST_CALL 0xe8
#define INST_JMP 0xe9
#define INST_BYTE 0x00
#define SHORT_JZ 0x74
#define MAXWAIT 100000
#define _DWORD DWORD
#define _WORD WORD
#define _BYTE BYTE

LPVOID MemcpyEx(DWORD lpDestDWORD lpSourceint len)
{
    
DWORD oldSourceProt,oldDestProt=0;
     
VirtualProtect((LPVOID)lpSource,len,PAGE_EXECUTE_READWRITE,&oldSourceProt);
       
VirtualProtect((LPVOID)lpDest,len,PAGE_EXECUTE_READWRITE,&oldDestProt);
       
memcpy((void*)lpDest,(void*)lpSource,len);
      
VirtualProtect((LPVOID)lpDest,len,oldDestProt,&oldDestProt);
     
VirtualProtect((LPVOID)lpSource,len,oldSourceProt,&oldSourceProt);
    return (
LPVOID)lpDest;
};

DWORD Intercept(int instructionDWORD lpSourceDWORD lpDestint len)
{
    
DWORD realtarget;
    
LPBYTE buffer = new BYTE[len];
    
    
memset(buffer,0x90,len);

    if (
instruction != INST_NOP && len >= 5)
    {
    
buffer[(len-5)] = instruction;
    
DWORD dwJMP = (DWORD)lpDest - (lpSource + (len-5));
    
memcpy(&realtarget,(void*)(lpSource+1),4);
    
realtarget realtarget+lpSource+5;
    
memcpy(buffer + (len-5),&dwJMP,4);
    }
    if (
instruction == SHORT_JZ)
    {
        
buffer[0]=instruction;
        
buffer[1]=(BYTE)lpDest;
    }
    if (
instruction == INST_BYTE)
    {
        
buffer[0]=(BYTE)lpDest;
    }
    
MemcpyEx(lpSource, (DWORDbufferlen);
    
delete[] buffer;
    return 
realtarget;
}

DWORD SearchPattern(charpattern,DWORD start_offset ,DWORD ende)
{
        
DWORD offset=start_offset;
        
DWORD start=offset
        
DWORD backoffset=0;
        
DWORD size =strlen(pattern)-1;
        
DWORD foundoffset=0;
 
        
char pEnd=pattern;
        while(
1)
        {
                
char &myposition=*(char*)offset;
                if ((
pEnd[1]!='x'))
                {
                        
char temp=(char)strtoul(pEnd, &pEnd0x10);
                        if (
temp==myposition)
                        {
                                if (
foundoffset==0)
                                {
                                        
foundoffset=offset;
                                }
                        }
                        else
                        {
                                
pEnd=pattern;
                                if (
foundoffset != 0)
                                        
offset=foundoffset;
                                
foundoffset=0;
                        }
                }
                else
                {
                 
pEnd=&pEnd[2];
                }
                
offset++;
                if (((
DWORD)pEnd-(DWORD)pattern>=size)||(offset>=ende))
                        break;
        }
        return 
foundoffset;
}
HINSTANCE hLThis 0;
HINSTANCE hL 0;
FARPROC p[332] = {0};
void GetLogin(voidpParams);
DWORD sendadr_ SearchPattern("55 8B EC 83 EC 18 83 3D x x x x 00 74 07 33 C0 E9 x x x x 8A 45 08 A2 x x x 00 83 3D x x x 00 01 75 0C"
                                      
,0x00400000,0x007FFFFF);
DWORD sendadr sendadr_0x06;

__declspec(nakedint __cdecl Send_To_Server (BYTE type LPCSTR format , ... )
{
    
__asm
    
{
        
push ebp
        mov ebp
esp
        sub esp
0x18
        jmp sendadr
    
}
}




char Login_ID[255]; 
char Login_PW[255];
char Login_PW_Second[255];
void Send_SecondPW()
{
    
Sleep(200);
        
Send_To_Server(0x88,"bs",0,Login_PW_Second);
    
Sleep(100);
}
void Send_Login()
{
        
Send_To_Server(0x02,"ss",Login_ID,Login_PW);
    
Sleep(500);
        
Send_SecondPW();
}

void CommandHandler()
{
    for (
int i 0;i<10;i++)
    {
        
Send_To_Server(0x15,"bbb",226,0,0);
    }
        
Beep(500,500);
}

void GetLogin(voidpParams)


    
DWORD destSize;
    
destSize=100;
    
GetPrivateProfileString("Auto_Login","ID","NULL",Login_ID,destSize,".\\system.ini"); 
    
GetPrivateProfileString("Auto_Login","PW","NULL",Login_PW,destSize,".\\system.ini");
    
GetPrivateProfileString("Auto_Login","2PW","NULL",Login_PW_Second,destSize,".\\system.ini");
    
Sleep(100);
    
Send_Login();
}

void Load_Auto_Login(voidstart_parameter)
{
    
Sleep(10000);
    
GetLogin(0);
    
Sleep(30000);
    
CommandHandler();

its from this thread

thank you for any hint or help
HaCkAcc is offline  
Old 10/26/2021, 19:28   #18
 
elite*gold: 0
Join Date: Sep 2016
Posts: 22
Received Thanks: 0
do you have hack for elite kal?
DragoNaga1 is offline  
Old 02/27/2022, 20:58   #19
 
elite*gold: 0
Join Date: Jun 2011
Posts: 9
Received Thanks: 1
Do you still offer services? If so pm me please.
kalkalkal is offline  
Old 08/26/2022, 09:30   #20
 
elite*gold: 0
Join Date: Mar 2011
Posts: 66
Received Thanks: 2
interested
ladro2011 is offline  
Old 09/04/2022, 23:14   #21
 
elite*gold: 0
Join Date: Jul 2011
Posts: 12
Received Thanks: 0
interested
-XeNoB- is offline  
Old 10/13/2022, 04:18   #22
 
elite*gold: 0
Join Date: Nov 2011
Posts: 222
Received Thanks: 50
...
A.k.A. is offline  
Reply


Similar Threads Similar Threads
[Selling] ★★ [Coding Service] Software, Website or Script? DarkHour Coding! ★★
10/26/2014 - Coders Trading - 3 Replies
★★ Software, Website or Script? DarkHour Coding! ★★ Deutsch: Du hast eine Vision von einer Software, einer Website oder einem Script? Wir coden es dir! Erzähl uns einfach von deinen Vorstellungen und sei aktiv bei der Programmierung dabei, indem du uns mit deinen Ideen leitest. Du brauchst keinerlei Wissen über irgendwelche Programmier-Dinge haben, das erledigen wir für dich!
*NEW CODING ART!!!..........:::::~WhiteLight D3D~:::::..........*NEW CODING ART!!!
09/21/2010 - WarRock Hacks, Bots, Cheats & Exploits - 25 Replies
http://250kb.de/u/100911/p/m4buevNCZhoQ.PNG Download: Multiupload.com - upload your files to multiple file hosting sites! VirusScan: VirusTotal - Free Online Virus, Malware and URL Scanner Funktionen: SuperJump Teleport NoSpread NoRecoil
Uce Coding+ winhex coding
03/05/2009 - Dekaron - 8 Replies
i was just wondering is it true if u do coding with winhex is it less dc?? tats all cuz uce coding dcs me alot



All times are GMT +2. The time now is 15:38.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.