
my latest project
it survives entirely by jumping. lol. i should give it a good regeneration armor and the drive and leave it. can't really beat the game on jumps alone though...
idea though - there's a 1:xxx chance that using the drive instantly kills everything on screen. it's the only defensive move it has and it's purely chance that it works. it probably won't, but that's why they call it the IID.
idea though - there's a 1:xxx chance that using the drive instantly kills everything on screen. it's the only defensive move it has and it's purely chance that it works. it probably won't, but that's why they call it the IID.
You could always give it a modified sub-etha transponder...
It could find a friendly ship within range and essentially turn it into a wingman. There would have to be either a cool down time, a max number of ships, and/or a chance it doesn't work at all (maybe turns them hostile?)
Here's a new script for the IID:
As a last line of defence you've always got your towel.
Sub-Etha from the Wiki:
Sub-Etha is an interstellar telecommunications network used by hitchhikers to flag down passing spaceships. The primary hitcher's tool is known as the Sub-Etha Sens-O-Matic, a thumb-shaped device that both detects sub-etha radio signals and contacts passing ships to ask to be let on board. Sub-Etha is used throughout the Milky Way for any kind of data transmission, such as listening to the news or updating the Hitchhiker's Guide to the Galaxy itself.
It could find a friendly ship within range and essentially turn it into a wingman. There would have to be either a cool down time, a max number of ships, and/or a chance it doesn't work at all (maybe turns them hostile?)
Here's a new script for the IID:
Code: Select all
(block (rand)
(setq rand 1d100)
(switch
(eq rand 1)
;; A 1 percent chance of destroying all enemy ships in 100 ls
(block (EnemyShips)
(plyMessage gPlayer "WOW! That was infinitly improbable!")
(setq EnemyShips (sysFindObject gSource EsN:100))
(enum EnemyShips theShip
(objDestroy theShip)
)
)
(leq rand 10)
;; A 9 percent chance of jumping all enemy ships randomly
(block (EnemyShips)
(plyMessage gPlayer "Hmmm, that was weird...")
(setq EnemyShips (sysFindObject gSource EsN:100))
(enum EnemyShips theShip
(objJumpTo theShip (sysVectorPolarOffset 0 (random 0 360) (random 1 1500)))
)
)
(gr rand 10)
;; The Player jumps randomly
(objJumpTo gPlayerShip (sysVectorPolarOffset 0 (random 0 360) (random 1 1500)))
)
)
As a last line of defence you've always got your towel.
Coming soon: The Syrtian War adventure mod!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
Here's some code that I have tested and it works great.
I added a small explosion when the ships are destroyed rather than having them simply disappear.
I added a small explosion when the ships are destroyed rather than having them simply disappear.
Code: Select all
(block (rand)
(setq rand (random 1 100))
(switch
(eq rand 1)
;; A 1 percent chance of destroying all enemy ships in 100 ls
(block (EnemyShips)
(plyMessage gPlayer "WOW! That was infinitly improbable!")
(setq EnemyShips (sysFindObject gSource "EsN:100"))
(enum EnemyShips theShip
(block Nil
(objDestroy theShip)
(sysCreateEffect &efSmallExplosion1; theShip (objGetPos theShip))
)
)
)
(leq rand 10)
;; A 9 percent chance of jumping all enemy ships randomly
(block (EnemyShips)
(plyMessage gPlayer "Hmmm, that was weird...")
(setq EnemyShips (sysFindObject gSource "EsN:100"))
(enum EnemyShips theShip
(objJumpTo theShip (sysVectorPolarOffset 0 (random 0 360) (random 1 1500)))
)
)
(gr rand 10)
;; The Player jumps randomly
(objJumpTo gPlayerShip (sysVectorPolarOffset 0 (random 0 360) (random 1 1500)))
)
)
Coming soon: The Syrtian War adventure mod!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
A Turret defense genre mod exploring the worst era in Earth's history.
Can you defend the Earth from the Syrtian invaders?
Stay tuned for updates!
wonderful. i spent the last half an hour trying to destroy the iocrym with it. i got it to teleport once and the rest of the time flying back to it.
and of course i realize my folly AFTER it's gone. NO GATE ROD!! hahaha

- Darth Saber
- Militia Commander
- Posts: 290
- Joined: Mon Aug 04, 2008 4:53 pm
- Location: Korriban
Evilbob wrote: "Hmm, if we had a weapon that changed the target's soverign on hit..."
That sounds like the Hapan "gun-of-command," found in "Star Wars: The Courtship of Princess Leia."
Would it be possible to create such a weapon, givin the limitations in Transcendence programming?
That sounds like the Hapan "gun-of-command," found in "Star Wars: The Courtship of Princess Leia."
Would it be possible to create such a weapon, givin the limitations in Transcendence programming?