Help!
- goat not sheep
- Militia Captain
- Posts: 669
- Joined: Fri May 19, 2006 8:36 pm
- Location: ...
- Contact:
Well...evilbob. Just upgrade your stations.
>.<
- goat not sheep
- Militia Captain
- Posts: 669
- Joined: Fri May 19, 2006 8:36 pm
- Location: ...
- Contact:
I'm sure a hornet invincipod will take a cruiser down, but just for the fun of it...upgrade SOME stations evilbob.
>.<
prove it. Even if they are, the ares are using nuclear warheads, and there are still missle launchers. So, Nuclear warhead + propulsion = nuclear missle. so there. And GnS, I'm not changing my stations for n00b godmodders.Yugimotomanager wrote:Nuclear missiles? They'd be horribly outdated by this time period
Alright, sorry about the double post, but I need some more help, and don't wanna start a new topic
I'm creating a ROM that will create an escort ship for the player
I'm creating a ROM that will create an escort ship for the player
The problem is, the ship appears, then immediatley gates out. Can someone enlighten me as to why?<Invoke key="W">
(sysCreateShip &scTICCruiser;
(objGetNearestStargate gSource) &svTalon;)
(shpOrderEscort ship gPlayerShip)
</Invoke>
- goat not sheep
- Militia Captain
- Posts: 669
- Joined: Fri May 19, 2006 8:36 pm
- Location: ...
- Contact:
You don't have to trust me on this...but maybe it's this:
Code: Select all
(objGetNearestStargate gSource) &svTalon;)
>.<
- goat not sheep
- Militia Captain
- Posts: 669
- Joined: Fri May 19, 2006 8:36 pm
- Location: ...
- Contact:
Well...i'm not a professional modder yet. I do have knowlege that a auton gates afer you die (if you don't go back in time with a resurection). Maybe the auton thinks you're dead somehow. Hmm... that's the only thing i see involving stargates.
>.<
- goat not sheep
- Militia Captain
- Posts: 669
- Joined: Fri May 19, 2006 8:36 pm
- Location: ...
- Contact:
You like to spell beliEve wrong. I still don't see why if it can't escort...it gates out.
>.<
Try this:
Use "&svIndependent;" if you don't want to be liable for any accidental friendly fire from the escort. Else, replace it with "auton" including the quotes if you want your escort to be treated like an auton.
Replace "gPlayerShip" with "gSource" since you are the source of the invoke.
This should work but if it don't then it could be because of the "(objGetNearestStargate gSource) &svTalon;)". Never used anything like it before.
Code: Select all
<Invoke key="W">
(block (ship)
; Create the ship
(setq ship
(sysCreateShip &scTICCruiser;
&svIndependent;))
; Escort Playership
(objGetNearestStargate gSource) &svTalon;)
(shpOrderEscort ship gSource)
Replace "gPlayerShip" with "gSource" since you are the source of the invoke.
This should work but if it don't then it could be because of the "(objGetNearestStargate gSource) &svTalon;)". Never used anything like it before.