Jump to content
Sign in to follow this  
kuwahara<ANZAC>

setpos,setmarkerpos, _pos onmapsingleclick help

Recommended Posts

ok this sounds simple but has me stumped..plz help.

what im trying to do is>>

move 2 markers and an object with a onmapsingleclick

marker1= T3_3

marker2= T3_4

object= medic_base1

if anyone can compile something quickly for me i would be a very happy camper.

Share this post


Link to post
Share on other sites

Script 1:

hint format ["Instructions\n\nClick on map\nwhere you want the marker to go."]

~1

onMapSingleClick {[_pos,1, player] exec "support\onsingleclick1.sqs";onMapSingleClick{}}

exit

Script 2:

~3

_counter = 0

_pos  = _this select 0

#getcoords

_xpos = _pos select 0

_ypos = _pos select 1

_letters = ["Aa","Ab","Ac","Ad","Ae","Af"

,"Ag","Ah","Ai","Aj","Ba","Bb"

,"Bc","Bd","Be","Bf","Bg","Bh"

,"Bi","Bj","Ca","Cb","Cc","Cd"

,"Ce","Cf","Cg","Ch","Ci","Cj"

,"Da","Db","Dc","Dd","De","Df"

,"Dg","Dh","Di","Dj","Ea","Eb"

,"Ec","Ed","Ee","Ef","Eg","Eh"

,"Ei","Ej","Fa","Fb","Fc","Fd"

,"Fe","Ff","Fg","Fh","Fi","Fj"

,"Ga","Gb","Gc","Gd","Ge","Gf"

,"Gg","Gh","Gi","Gj","Ha","Hb"

,"Hc","Hd","He","Hf","Hg","Hh"

,"Hi","Hj","Ia","Ib","Ic","Id"

,"Ie","If","Ig","Ih","Ii","Ij"

,"Ja","Jb","Jc","Jd","Je","Jf"

,"Jg","Jh","Ji","Jj"]

_numbers = ["99","98","97","96","95","94"

,"93","92","91","90","89","88"

,"87","86","85","84","83","82"

,"81","80","79","78","77","76"

,"75","74","73","72","71","70"

,"69","68","67","66","65","64"

,"63","62","61","60","59","58"

,"57","56","55","54","53","52"

,"51","50","49","48","47","46"

,"45","44","43","42","41","40"

,"39","38","37","36","35","34"

,"33","32","31","30","29","28"

,"27","26","25","24","23","22"

,"21","20","19","18","17","16"

,"15","14","13","12","11","10"

,"09","08","07","06","05","04"

,"03","02","01","00"]

?_xpos<0 or _xpos>12800:_xcoor="??";goto "Ycoor"

_xcoor = _letters select ((_xpos-64)/128)

#Ycoor

?_ypos<0 or _ypos>12800:_ycoor="??";goto "ShowXYcoor"

_ycoor = _numbers select ((_ypos-64)/128)

#Teleport

      "T3_3" setMarkerPos [_pos select 0, _pos select 1]

      "T3_4" setMarkerPos [_pos select 0, _pos select 1]

"medic_base1" setpos [_pos select 0, _pos select 1]

      hint format ["RADIO MESSAGE\nMarker is at %1%2", _xcoor, _ycoor]

exit

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×