Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsCog Forum → WOW! 2 problems in one go!
WOW! 2 problems in one go!
2003-09-02, 8:53 AM #1
Hi!
Yes, first Conveyer problems and now a Test problem.
I have a level where 3 STs follow you. (Rebels in descise.) When you reach a thing and activate it, I want to test if I've got all 3 onboard. The thing is really some type of transport that will transport us to another level.
All I need is "When activated, test to see if I've got them all."

/Edward
Edward's Cognative Hazards
2003-09-02, 10:04 AM #2
dist1=VectorDist((GetThingPos(stormtrooperA)), GetThingPos(You));
dist2=VectorDist((GetThingPos(stormtrooperB)), GetThingPos(You));

if (dist1 < minimum distance)
{
if (dist2 < minimum distance)
}
-------

Something like that?
(and then for all 3 ofcourse)

------------------
Call me Vedder.
Author of: A Pirate's Tale (Mots SP)
APT homepage
----
<phantom> You're always going to be aloser if you attempt to aspire to massassi standards.
<phantom> They're a bunch of socially inadequate <beep> whores who have little or no lives.

[This message has been edited by ZOOIkes (edited September 02, 2003).]
APT 1, 2, 3/4, 5/6
TDT
DMDMD

http://veddertheshredder.com
2003-09-03, 4:34 AM #3
Thanks! That worked! I was about to ask for GetThingSector, but sure! That will work as well, if not better.

/Edward
Edward's Cognative Hazards

↑ Up to the top!