[Florensia] Speedhack CE & Macros

08/29/2008 17:54 club13#136
Please enter the script name to run.
Type in 'exit' (without quotes) to exit.
Script> florensia.lua
Opening florensia.lua...

Starting script execution - Press CTRL+C to exit.
Press CTRL+L to cancel execution and load a new script.
-------------------------------------------------
Press the (F6) key to stop/pause the script.
You can resume with the (F5) key.
...lution_7\micromacro\micromacro\scripts\florensi a.lua:35: bad argument #1 to '
memoryReadIntPtr' ((null))


Please enter the script name to run.
Type in 'exit' (without quotes) to exit.
Script>


Where is the failure?
08/29/2008 19:23 Atheuz#137
Quote:
Originally Posted by club13 View Post
Where is the failure?
memoryReadIntPtr ((null))

Guess.
08/31/2008 03:03 eviltuna#138
Anyone find out the X. Y coordinates? I'm working on a bot and working on a way to run around the map after I die, but I can't find char your char's coordinates.
09/06/2008 05:01 healmike#139
hey guys..where can we download this CE thingy? kinda new at CE word lol..
09/07/2008 23:31 Zephino#140
Quote:
Originally Posted by healmike View Post
hey guys..where can we download this CE thingy? kinda new at CE word lol..


google cheat engine
09/09/2008 21:14 jagas#141
Anyone could do another bypass shield couse the new patch today blocked the bypass ty.
09/09/2008 22:15 Hiatsu#142
There you go.

Just made this.
Scan it etc should be clean.

[Only registered and activated users can see links. Click Here To Register...]

Thx to Fyrre for HS Strings.

greetz Hia
09/09/2008 23:10 jagas#143
Hiatsu ty for help but unfortunatelly didnīt work cause the game dont open and the shield still opening.

Could you try to make another one plz.

See ya.
09/09/2008 23:22 jagas#144
Wow sorry man im completely noob its working perfectly.

Tyy.
09/10/2008 09:56 hanryu79#145
im sorry..but how do i use tat .bin file ? (im new to hax & stuffs)
can anybody help me?
thanks in advance
09/10/2008 11:20 Hiatsu#146
go to florensia install directory. open bin folder.
backup ur old FlorensiaEN.bin.
delete HSield Folder

Extract my FlorensiaEN.bin and start game via launcher.

greetz Hia
09/10/2008 22:01 eugenetian#147
Thanks Hiatsu
i admit i am big noob and thanks you posting the updated .bin file
09/10/2008 23:23 eugenetian#148
got it fixed !
09/11/2008 09:21 Hiatsu#149
Well I tried some things yesterday.
And what's possible is editing the patch files and making a patch server my own.
I gonna try editing some .xml files and patch the client with them.

greetz Hia
09/12/2008 05:09 horo1988#150
Can someone give me the file.lua that works?

I'm currently using this one

-- Memory Adresses
PlayerHPadr = 0x00FA8958;
PlayerHPoff = 0x1D4;
TargetLockadr = 0x18DBD325;
-- Setup --
-- Sit When HP Reaches.. --
PlayerHPStop = 100;
-- Stand Up When HP Reaches.. --
PlayerHPSit = 230;
-- Enables Looting, increases the time between killing --
EnableLooting = 1;
-- Reviving Enabled? --
Revive = 1;
-- Mouse Coords of the Revive Button
ReviveX = 547;
ReviveY = 411;
-- End of Setup--

function GetTarget()
TargetLock = memoryReadByte(proc, TargetLockadr);
if( TargetLock == 1 and PlayerHP > PlayerHPStop and Sitting == 0) then
keyboardPress( key.VK_1 );
rest(20);
keyboardPress( key.VK_7 );
end
if( TargetLock == 0 and PlayerHP > PlayerHPStop and Sitting == 0 ) then
Loot();
keyboardPress( key.VK_0 );
rest(20);
end
rest(20);
end

function Heal()
PlayerHP = memoryReadIntPtr(proc, PlayerHPadr, PlayerHPoff);
if( PlayerHP <= PlayerHPStop and TargetLock == 0 and Sitting == 0 ) then
rest(5000);
keyboardPress( key.VK_8 );
rest(4000);
Sitting = 1;
end
if( PlayerHP >= PlayerHPSit and TargetLock == 0 and Sitting == 1 ) then
keyboardPress( key.VK_8 );
rest(4000);
Sitting = 0;
end
end

function DefeatAttacker()
if( Sitting == 1 and TargetLock == 1 ) then
keyboardPress( key.VK_S );
rest(500);
Sitting = 0;
keyboardPress( key.VK_7 );
end
end

function Loot()
if( EnableLooting == 1 ) then
keyboardPress( key.VK_X );
rest(4000);
end
end

function Reviving()
if( Revive == 1 and PlayerHP == 0 ) then
yrest(5000);
mouseSet(ReviveX, ReviveY);
yrest(500);
mouseLClick();
end
end

function main()
attach( findWindow("Florensia") );
proc = openProcess( findProcess("Florensia") );
Sitting = 0;
while(true) do
Heal();
DefeatAttacker();
GetTarget();
Reviving();
rest(10);
end
end

startMacro(main, true);



I dont know why, I run the micromacro.exe, n then put filename.lua

When I press F5, nothing happens.
The script appears no error though.

Can somebody help?