Does KalExenia still have a virus?

03/01/2011 23:47 MrJoey#1
Does kalexenia still have a virus in there files or is it fixed now or how can i fix? Please post fast getting bored of s1 now wana play a private server just no good ones.
03/02/2011 00:54 *TheGhosT*#2
probebly they added it somewhere else.
03/02/2011 01:04 RunzelEier#3
why do you still want to play this server, if they add malware to they client?
03/02/2011 01:12 MrJoey#4
Dont feel like playing int and nothing els to do
03/02/2011 01:41 RunzelEier#5
and there is only 1 p-server :facepalm:
03/02/2011 02:22 MrJoey#6
Get me a working bot on int timo :D i can pay you
03/02/2011 16:14 spearox#7
get a brain and make it yourself
if you pay for it you wont learn anything
03/02/2011 23:38 MrJoey#8
Hush the lip i did not ask you the question. Therefor STFU. Thanks.
03/02/2011 23:56 RunzelEier#9
here ist the source code.
this code is more than one year old and today i would do many things different.
you have to change it a bit to make it work again




no further support.

it is indeed easier to write a bot your self than to understand a other bot
03/03/2011 07:12 hoseta#10
Quote:
Originally Posted by RunzelEier View Post
here ist the source code.
this code is more than one year old and today i would do many things different.
you have to change it a bit to make it work again




no further support.

it is indeed easier to write a bot your self than to understand a other bot

Hay Timo264 I saw in ur code memory read can u tell me how can i fix that little code to work and why its wont work right now ? maybe kalonline block something
in AU so i dont know how u can read memory.

here is simply code i write to test and its wont read result value always = 0 speed or cord...

Code:
#include <nomadmemory.au3>
#RequireAdmin
$Open = _MemoryOpen(ProcessExists("engine.exe"))
$error = @error
If $error = 1 Then
    MsgBox(0,"Memoryread","Error getting the Process-ID!")
ElseIf $error = 2 Then
    MsgBox(0,"Memoryread","Error opening kernel32.dll!")
ElseIf $error = 3 Then
    MsgBox(0,"Memoryread","Can't open the Process!")
EndIf  

$base = Dec("006F3840")
$offset1 = Dec("4640")
$offset2 = Dec("4B14")




	$curCORD = _MemoryPointerRead($base, $Open,  $offset1)
	$curSPEED = _MemoryPointerRead($base, $Open,  $offset2)
	
	msgbox(1,"adress","Coordinate:"& "
03/03/2011 21:06 RunzelEier#11
you missed the last ")" ;)
and make sure you have the right coordinates.

in my source code there shouldn't be any readmemory parts.
if there ist something with read memory, you have to change it into pixel search.

and the speed and z-coord address i used are for p-server only
03/04/2011 14:00 hoseta#12
ya i did take from ur source and the ")" was becouse deleted on elite ;p in code is fine,
anyway i put ur part of source but still dont work value is 0 xd could u upload full source in zip one? or look my code :P? please ;d

Code:
#include <nomadmemory.au3>
#RequireAdmin


$Open = _MemoryOpen(ProcessExists("engine.exe"))
$error = @error
If $error = 1 Then
    MsgBox(0,"Memoryread","Error getting the Process-ID!")
ElseIf $error = 2 Then
    MsgBox(0,"Memoryread","Error opening kernel32.dll!")
ElseIf $error = 3 Then
    MsgBox(0,"Memoryread","Can't open the Process!")
EndIf  

$base = Dec("006F3840")
$offset1 = Dec("4640")
$offset2 = Dec("4B14")
$spid = 0x04571834

$ur = "0x006F3840"
$off = "0x4B14"

$Point = _memoryread($ur, $Open, 'dword')
$30 = "0x" & Hex($Point + $off)
$was = _MemoryRead($30, $Open, 'dword')



	$curCORD = _MemoryPointerRead($base, $Open,  $offset1)
	$curSPEED = _MemoryPointerRead($base, $Open,  $offset2)
	
	msgbox(1,"adress","Coordinate:"& "  "&$curCORD & "  "& "Speed:" & "  "& $curSPEED & "  "& "inna:" & "  "& $was)