The error still happened without the script. I set the three separate sprite definitions of the player sprite to auto-delete when off map, and this fixed the errors. I still have the problem with my player sprite not changing when button one is pressed.
So, here is the script so far.
***********modified 28/07/05*****************
Dim nExpectCount 'number of sprites to expect in
Dim nShot0Count 'number of sword sprites
Dim arBtn0Shots(0) 'sword sprites
Dim nButton0State
'generated by wizard
'watches for button/key press by player
Sub Player_OnControllerMove(OldActions, NewActions)
If (Not OldActions) And NewActions And ACTION_BUTTON1 Then nButton0State = 1
If (Not NewActions) And ACTION_BUTTON1 Then nButton0State = 0
End Sub
'generated by wizard
'apprears to remove references to sprites that are not on screen/in existence
Sub RecountShots()
Dim nSIdx, nLIdx
With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
nSIdx = 0
Do While nSIdx < nShot0Count
For nLIdx = 0 to .SpriteCount - 1
If arBtn0Shots(nSIdx) Is .Sprite(nLIdx) Then
Exit For
End If
Next
If nLIdx >= .SpriteCount Then
Set arBtn0Shots(nSIdx) = arBtn0Shots(nShot0Count - 1)
nShot0Count = nShot0Count - 1
Else
nSIdx = nSIdx + 1
End If
Loop
nExpectCount = .SpriteCount
End With
End Sub
'generated by wizard
'removes a sprite from the layer/screen
Sub RemoveShot(Spr)
Dim nIdx
With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
For nIdx = 0 to .SpriteCount - 1
If .Sprite(nIdx) Is Spr Then .RemoveSprite(nIdx) : Exit Sub
Next
End With
End Sub
'originally generated by wizard; modified/debugged by Mark
'returns the appropriate "velocity" for a magic attack based on PlayerSprite's state
Function GetStateDeltas(DX, DY)
With ProjectObj.GamePlayer.PlayerSprite
Select Case .rDef.Template.StateType
Case STATE_SINGLE
If Abs(DX) + Abs(DY) > 1 Then
DX = .DX / Abs(.DX) + Abs(.DY)
DY = .DY / Abs(.DX) + Abs(.DY)
Else
If Abs(DX) + Abs(DY) < 1 Then DX = 0 : DY = -1
End If
Case STATE_LEFT_RIGHT
DY = 0
If (.CurState mod 2) = 0 Then DX = -1 Else DX = 1
Case STATE_8_DIRECTION
Select Case (.CurState mod 8)
Case 0 : DX = 0 : DY = -1
Case 1 : DX = 1 : DY = -1
Case 2 : DX = 1 : DY = 0
Case 3 : DX = 1 : DY = 1
Case 4 : DX = 0 : DY = 1
Case 5 : DX = -1 : DY = 1
Case 6 : DX = -1 : DY = 0
Case 7 : DX = -1 : DY = -1
End Select
Case Else
DX = Cos((.CurState mod 36) * 3.14159 / 18)
DY = -Sin((.CurState mod 36) * 3.14159 / 18)
End Select
End With
End Function
'orginally generated by wizard; modified by Mark
'deals with particularities of each sprite before each frame is drawn, see internal documentation for more information
Sub Player_OnAfterMoveSprites
'setup some values for screen
Dim nIdx, VLeft, VTop, VRight, VBottom, VDat
With ProjectObj.GamePlayer
VLeft = .MapScrollX
VTop = .MapScrollY
VRight = VLeft + .rMap.ViewWidth
VBottom = VTop + .rMap.ViewHeight
End With
If nButton0State > 0 Then DoFireButton0
If nExpectCount <> ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer.SpriteCount Then RecountShots
'if player is attacking with sword
if nShot0Count = 1 then
'check if the last frame of the sword is being displayed, if true, remove sword sprite, change player sprite to non-attacking sprite
Dim o
If arBtn0Shots(0).CurFrame >= 6 Then
RemoveShot arBtn0Shots(0)
nShot0Count = 0
nExpectCount = nExpectCount - 1
SwitchPlayerSprite "BoxyPlayer"
'Set ProjectObj.GamePlayer.PlayerSprite.rDef.Template = ProjectObj.GamePlayer.rMap.SpriteTemplates("Player")
'if false, fix direction (state) of sword sprite with respect to player sprite
'and move the sword sprite to appropriate location based on player sprite location
else
GetStateDeltas DX, DY
With ProjectObj.GamePlayer.PlayerSprite
arBtn0Shots(0).CurState = (.CurState Mod 2)
If DX = 0 Then
arBtn0Shots(0).X = .X + (.Width - arBtn0Shots(0).Width) / 2
ElseIf DX = -1 Then
arBtn0Shots(0).X = .X - .Width
ElseIf DX = 1 Then
arBtn0Shots(0).X = .X + .Width
End If
If DY = 1 AND DX = 0 Then
arBtn0Shots(0).Y = .Y + .Height
ElseIf DY = 0 Then
arBtn0Shots(0).Y = .Y + (.Height - arBtn0Shots(0).Height) / 2
ElseIf DY = -1 AND DX = 0 Then
arBtn0Shots(0).Y = .Y - .Height
else
arBtn0Shots(0).Y = .Y + (.Height - arBtn0Shots(0).Height) / 2
End If
end with
end if
end if
'manually advance animation frame of sword (due to an error in 1.2.3 -- motion/animate speed integrated)
'NOTE: unnecessary looping involved: to be modified
Dim nAnimIdx
For nAnimIdx = 0 to nShot0Count - 1
arBtn0Shots(nAnimIdx).AdvanceFrame 1
Next
End Sub
'originally generated by wizard; heavily modified by Mark
'deals with attacking with sword, see internal documentation
Sub DoFireButton0()
Dim NewSpr, DX, DY
nButton0State = nButton0State + 1
If nButton0State < 20 And nButton0State > 2 Then Exit Sub Else nButton0State = 2
'check for how many sword attacks there are on screen, if 1 or more, exit sub (so another sword attack will not be created)
If nShot0Count >= 1 Then Exit Sub
'create a sword sprite
Set NewSpr = ProjectObj.GamePlayer.rMap.SpriteDefs("Sword").MakeInstance
Set arBtn0Shots(nShot0Count) = NewSpr
nShot0Count = 1
With ProjectObj.GamePlayer.PlayerSprite
.rDef.rLayer.AddSprite HostObj.AsObject(NewSpr)
nExpectCount = nExpectCount + 1
'set swords velocity to 0 (flying sword kind of odd in this case--though, this could be useful in a Zelda-esque charged sword situation)
GetStateDeltas DX, DY
NewSpr.DX = 0
NewSpr.DY = 0
'use DX and DY to determine the placement of sword sprite with respect to player sprite
If DX = 0 Then
NewSpr.X = .X + (.Width - NewSpr.Width) / 2 'center sword horozontally
ElseIf DX = -1 Then
NewSpr.X = .X - .Width 'put sword on left
ElseIf DX = 1 Then
NewSpr.X = .X + .Width 'put sword on right
End If
If DY = 1 AND DX = 0 Then
NewSpr.Y = .Y + .Height 'put sword on bottom
ElseIf DY = 0 Then
NewSpr.Y = .Y + (.Height - NewSpr.Height) / 2 'center sword vertically
ElseIf DY = -1 AND DX = 0 Then
NewSpr.Y = .Y - .Height 'put sword on top
else
NewSpr.Y = .Y + (.Height - NewSpr.Height) / 2 'center sword vertically
End If
if ProjectObj.GamePlayer.PlayerSprite.CurState > 7 then
arBtn0Shots(0).CurState = ProjectObj.GamePlayer.PlayerSprite.CurState - 8
else
arBtn0Shots(0).CurState = ProjectObj.GamePlayer.PlayerSprite.CurState
end if
'change the player sprite to an attacking sprite
SwitchPlayerSprite "BoxyJab"
End With
End Sub
'generated by Wizard
'appears to change from X & Y velocities to "polar" state (36 state)
Function RectToPolarState(X, Y)
Dim Angle, Pi
Pi = 3.14159
If X <> 0 Then
Angle = Atn(-Y / X)
Else
Angle = -(Pi / 2) * Sgn(Y)
End If
If X < 0 Then
Angle = Pi + Angle
ElseIf Y > 0 Then
Angle = Pi * 2 + Angle
End If
RectToPolarState = ((Angle * 18) / Pi) Mod 36
End Function
'catches special functions from map, both are called by collision definitions
'the "Kill" special function is used to add 1 to kill inventory item
'the "Die" special frunction is used to remove 5 HP from player, and then at 0 HP display a "game over" screen
Sub Player_OnSpecialFunction(SpecialFunction)
If SpecialFunction.Name = "Kill" then
ProjectObj.GamePlayer.InvQuantityOwned(1) = ProjectObj.GamePlayer.InvQuantityOwned(1) + 1
end if
if SpecialFunction.Name = "Die" then
ProjectObj.GamePlayer.InvQuantityOwned(0) = ProjectObj.GamePlayer.InvQuantityOwned(0) - 5
If ProjectObj.GamePlayer.InvQuantityOwned(0) = 0 then
ProjectObj.GamePlayer.ActivateFunction ProjectObj.Maps("City").Specials("Game Over")
ProjectObj.GamePlayer.bQuit = True
End If
End If
End Sub
'switches player sprite from one sprite to another based on the name of the new sprite
Sub SwitchPlayerSprite(NewSpriteName)
Dim NewSpr
Dim Idx
Dim MyState
MyState = ProjectObj.GamePlayer.PlayerSprite.CurState
With ProjectObj.GamePlayer.PlayerSprite.rDef.rLayer
Set NewSpr = .pMap.SpriteDefs(NewSpriteName).MakeInstance
.AddSprite(NewSpr)
NewSpr.X = ProjectObj.GamePlayer.PlayerSprite.X
NewSpr.Y = ProjectObj.GamePlayer.PlayerSprite.Y
For Idx = 0 to .SpriteCount - 1
If .Sprite(Idx) Is ProjectObj.GamePlayer.PlayerSprite Then
.RemoveSprite Idx
Exit For
End If
Next
Set ProjectObj.GamePlayer.PlayerSprite = NewSpr
End With
ProjectObj.GamePlayer.PlayerSprite.CurState = MyState
End Sub
'required code to work (attaches script to project at runtime)
HostObj.SinkObjectEvents ProjectObj.GamePlayer, "Player"
HostObj.ConnectEventsNow()
ProjectObj.GamePlayer.Play 16