OK, this is baby's first VBScript, so be kind and use lots of small words.

First I'll throw out the script and then detail the scenario. Also, yes I have looked at the sword script example. That one tends to use something very similar to the shooting script, which is a bit complicated for this.
' VBScript source code
'////////////////////////////////
'Test Attack Script
'///////////////////////////////
MsgBox "TEST"
Sub Player_OnControllerMove(OldActions, NewActions)
Select Case ProjectObj.Gameplayer.rMap.Name
Case "AttackTestMap.map"
If ((OldActions And eActionBits.ACTION_BUTTON1) = 0) AND _
((NewActions And eActionBits.ACTION_BUTTON1) <> 0) Then
Set NewSpr = ProjectObj.GamePlayer.rMap.SpriteDefs("Weapon").MakeInstance
With ProjectObj.GamePlayer.PlayerSprite
.rDef.rLayer.AddSprite HostObj.AsObject(NewSpr)
NewSpr.Y = .Y -16
NewSpr.CurState = .CurState
Select Case .CurState
Case 0,2
NewSpr.X = .X - 128
Case 1,3
NewSpr.X = .X + 128
End Select
End With
End If
End Select
End Sub
HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16
I modified this script slightly from several other attack scripts (mainly from Samurai Blade, Artifact, and Dark Elf). But I can't get it to work in a test project. The player sprite is 128x128 and named "Player1" with a sprite definition of "Player" the "Weapon" definition has an instance of "SwordSwing" with a total of 15 frames of 32x64 tiles at a really slow animation speed. Both are Left/Right sprites. The Player doesn't change to a new sprite in this (although he will in the final project); all the graphics are crude placeholders atm.
1) For a melee weapon attack that goes off the playersprite tile: Does the "swordswing" tile need to be the same size as the player sprite?
2) Is there a minimum number of frames the "swordswing" animation needs to be?
3) Using the line .Curstate line, does the NewSrp offset refer to the player sprite's tile size or the "Weapon" tile size. IE should the .X offset be 32/-32 or 128/-128.
According to the MsgBox, the script is running, but nothing happens when I hit any of the action buttons. I know this is probably just something really simple that I've missed, but for the life of me, I can't find it. The problem with reverse engineering other peoples' scripts is that most of them aren't documented well, and I'm never sure if there's a line buried in another section of the code that's a missing link. The price for not really understanding what I'm doing
Thanks in advance