Excuse me, I can't find what's problem of this.

Yeah, same here. I couldn't see anything wrong with Athena judging from the video.
The only thing I spotted is that there's nothing moving Athena in her RUNATTACK. Despite its name, setting command or script to move character is optional there.
 
next problem.
I'm trying to create a special move with a summon effect and two psychic orbs.

The model loads without errors, but neither the "super" effect nor the "psychob" subentities appear in-game.

Code:

summonframe 0 0 -60 0 0
subentity super

...

summonframe 6 -40 0 0 1
subentity psychob

summonframe 6 40 0 0 1
subentity psychob

Expected result:
- "super" effect appears when the special starts
- two psychob orbs appear on both sides

Actual result:
- the special animation plays
- no effect appears
- no psychob orbs appear

Am I using summonframe/subentity incorrectly, or is there something else I should check?
 

Attachments

  • athenaattack01.png
    athenaattack01.png
    39.9 KB · Views: 5
  • athenaattack02.png
    athenaattack02.png
    117 KB · Views: 5
There are couple problems.
First, summonframe and spawnframe could only work once. You'd need script for multiple spawning.
Second, before spawning anything, you have to make sure to be spawned entities have been loaded also.
 
Back
Top Bottom