Jump to content

Recommended Posts

Posted

Any dragon has the ability to shoot a fireball at the player, but what I want is that same exact thing, but there are about 5 fireballs that are shot at the player in succession. How would I achieve this?

Posted

you can trying changing the vanilla spell or make your own spell that shoots a fireball to shooting 5 by a script loop. OR you can choose to script it to cast the same spell 4 times more.

Posted

Put this into the script:

Int Property FiresToShoot Auto

Event Whatever; Replace Whatever with the event you want to use.

FiresToShoot = 5

While FiresToShoot > 0

     DoSpell; replace this with the code to 'cast' the spell
     FiresToShoot - 1

EndWhile

EndEvent

This should work. Replace the 'whatever' and 'dospell' with whatever is needed.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...