Home   Help Search Login Register  

Author Topic: Gamelogic name  (Read 949 times)

0 Members and 1 Guest are viewing this topic.

johan_d2

  • Guest
Gamelogic name
« on: 20 Jan 2006, 16:55:21 »
Hi,

I searched, but couldnt find..

When I name a gamelogic like WP1, how in a script can I get that name in a variable?
The NAME command gives random names, very strange.

Johan

Offline macguba

  • Former Staff
  • ****
    • macguba's operation flashpoint page
Re:Gamelogic name
« Reply #1 on: 20 Jan 2006, 16:58:10 »
WP1 is the variable.   If you name something WP1, then you can use that in a script.  For example:-

WP1 setPos getPos WP2
Plenty of reviewed ArmA missions for you to play

johan_d2

  • Guest
Re:Gamelogic name
« Reply #2 on: 20 Jan 2006, 17:05:29 »
Hi,

Well, I have a trigger covering an area, to harvest all the logics. They are in an array.
If I check the names of the logics, against another array, the WPx names dont show up, but instead I have things like Bravo Black.

_convldr = _this select 0

_logics = List LogicList

_lognam = ["wp1","wp2","wp3","wp4"]

_cl = (count _logics)

#loop

_rndom = random _cl
_rndom = _rndom - (_rndom mod 1)

_rndomLogic = _logics select _rndom

_c = 0

#checkwp
_b = _lognam select _c
_a = _rndomlogic
hint format ["%1 namelog %2 namelognam", _a, _b]
~1
? _a == _b: goto "moveass"
_c = _c + 1
? _c == _cl:hint "error, no WPx found"; exit
goto "checkwp"

#moveass

_convldr move getpos (_rndomLogic)

#loop1
_c = _convldr distance _rndomlogic
hint format ["%1 distance %2 ", _rndom,_c]
?((_convldr distance _rndomLogic) < 10):goto "loop"
~10
Goto "loop1"
« Last Edit: 20 Jan 2006, 17:11:15 by johan_d2 »

Offline Terox

  • Former Staff
  • ****
  • Follow the Sappers!
    • zeus-community.net
Re:Gamelogic name
« Reply #3 on: 20 Jan 2006, 19:20:20 »
Logics are treat similarly to units, they have group names and have unit names

if you try to return the name logic, it will give you the group/unit assignment name, eg alpha black 2

in your _lognam array, you place speech marks around each logic variable name, this is incorrect, it should read

_lognam = [wp1,wp2,wp3,wp4]


only marker variablenames, or strings need speech marks around them
Zeus ARMA2 server IP = 77.74.193.124 :2302
Teamspeak IP = 77.74.193.123

Offline THobson

  • OFPEC Patron
  • Former Staff
  • ****
Re:Gamelogic name
« Reply #4 on: 20 Jan 2006, 19:20:49 »
If you give a GameLogic (or any other object for that matter) a name, then the way to refer to it in a script is to use the name you gave it.  

So if you give a name to a GameLogic GL1 (by puttiing it the name in the Name field) then in a script you refer to that game logic by writing GL1  NB NOT "GL1" and certainly not name GL1

johan_d2

  • Guest
Re:Gamelogic name
« Reply #5 on: 20 Jan 2006, 19:35:14 »
@terox

the _logname is the array of checkup, not the actual logics

@thobson

Well, the _logics is filled array from LIST triggername.
So all the logics from the map are in this array, _logics.

Now, when I randomly select one logic from the _logics array, and move the
group to there works well. no problem here, but;
I want to compare the logic to another array, so the names are only
used for this script if in _lognam.
This prevents groups getting a logic like the famous 'server' logic as waypoint.

So the main question is: how on earth do I compare them?

Offline THobson

  • OFPEC Patron
  • Former Staff
  • ****
Re:Gamelogic name
« Reply #6 on: 20 Jan 2006, 19:47:28 »
Instead of:
Code: [Select]
_lognam = ["wp1","wp2","wp3","wp4"]have you tried:
Code: [Select]
_lognam = [wp1,wp2,wp3,wp4]???

The names are variables not srtings
« Last Edit: 20 Jan 2006, 19:47:51 by THobson »

johan_d2

  • Guest
Re:Gamelogic name
« Reply #7 on: 20 Jan 2006, 19:51:39 »
IT DID THE TRICK!

Sorry @terox

I was thinking of the exact name, but its a strange thing.

Altough a logic is named WP1 for example, its internally referred to ita alpha black etc.. very frustrating!

Thanks a million!.

Johan