CLEO Help Is there a cleo to set a checkpoint?

CLEO related
Status
Not open for further replies.

creatiive

Active member
Joined
Dec 8, 2013
Messages
66
Reaction score
0
Hello,

is there a cleo or an Autohotkey Script, to set a checkpoint on a specific place?

For example I enter the coordinates

x = 1887
y = 711
z = 11

and then there should be a redmarker on the map.
 

creatiive

Active member
Joined
Dec 8, 2013
Messages
66
Reaction score
0
Could you create a script for me, where I can enter the x, y and z coordinates and then there will be a marker on the map? Would be nice.

I found these codes:
#define FUNC_PlaceMarker0x725120 // ##SA##
_asm
{
push bZCheck// zCheck  ##SA##
push 0// normalZ ##SA##
push 0// normalY ##SA##
push 0// normalX ##SA##
push 0// rotate rate
push fPulseFraction// pulse
push 0    // period
push a// alpha
push b// blue
push g// green
push r// red
push fSize// size
push vecPosition // position
push dwType// type
push Identifier // identifier
call dwFunc
movdwReturn, eax
addesp, 0x3C
}

also something for AHK:
marker := 0
SetTimer, Marker, 0
Marker::
if(marker == 1)
{
mX := 0
        mY := 0
        mZ := 0
        lcpos := calcScreenCoors(mX,mY,mZ)
X := (lcpos[1] / 2.4) ;1920
Y := (lcpos[2] / 1.8) ;1080
WSIZE := 5
HSIZE := 5
if(!MARKERBOX)
        {
                MARKERBOX := BoxCreate(X, Y, WSIZE, HSIZE, 0xFF8eeed2, true)
}
        BoxSetPos(MARKERBOX, X, Y)
if((X > 800) || (X < 0) || (Y > 600) || (Y < 0))
{
BoxSetShown(MARKERBOX, false)
}
else
{
BoxSetShown(MARKERBOX, true)
}
}
return
Numpad0::
marker := 1
return

But it doesn't work for me
 
Status
Not open for further replies.
Top