I can find V,K,P,J,Z but NOT R

Freeform discussion about anything related to modding Transcendence.
Post Reply
shanejfilomena
Fleet Officer
Fleet Officer
Posts: 1533
Joined: Tue Mar 22, 2011 8:43 pm
Location: Alaska
Contact:

For those that do not know :
V=Virtual ; K=include only objects that cannot attack; P=include only objects visible to source;
J= include only objects from a given sovereign ( which i learned earlier in another post);
and Z= exclude player from (sysFindObject);

However, I was looking for "R"

Code: Select all

sysFindObject gPlayerShip "GR -uncharted;"

being as this goes to the Kronosaurus and it would be hunting the player i thought it was a little strange if the ship is created as GR instead of G.

Code: Select all

(setq chrDeployKronosaurus (lambda ()
				(if (not (typGetGlobalData &scCharonFrigateKronosaurus; "status"))
					(block (kronosaurus)
						; Create the Kronosaurus
						(setq kronosaurus
							(sysCreateShip
								&scCharonFrigateKronosaurus;
								(sysFindObject gPlayerShip "GR -uncharted;")
								&svPirates;
								)
							)

						; Order the Kronosaurus to attack the player
						(objFireEvent kronosaurus "OrderHuntPlayer")
						)
					)
				))
Flying Irresponsibly In Eridani......

I don't like to kill pirates in cold blood ..I do it.. but I don't like it..
User avatar
alterecco
Fleet Officer
Fleet Officer
Posts: 1658
Joined: Wed Jan 14, 2009 3:08 am
Location: Previously enslaved by the Iocrym

I would imagine it is the inverse of 'N', that is, find the object that is the farthest away.
Get your own Galactic Omni Device
Get it now. It's free!!
Image
shanejfilomena
Fleet Officer
Fleet Officer
Posts: 1533
Joined: Tue Mar 22, 2011 8:43 pm
Location: Alaska
Contact:

alterecco wrote:I would imagine it is the inverse of 'N', that is, find the object that is the farthest away.
ahhhhhhhhhhhhhhhhhh...this makes senses. you would not want the Big K to roll up on you straight out of the gate.

Ok Ill roll with that :)
thank you:)
Flying Irresponsibly In Eridani......

I don't like to kill pirates in cold blood ..I do it.. but I don't like it..
Post Reply