Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - defaultplayer

Pages: [1]
1
Script / Re: Attack Script (multiple q's)
« on: 2006-08-20, 09:21:09 AM »
Ouch.  Thanks for the quick reply.  Looks like I have some reworking to do. :(

2
Script / Re: Attack Script (multiple q's)
« on: 2006-08-19, 08:44:29 PM »
Thanks for the help.  I have several of the attacks up and working (in theory).  Now I have another question.  When GameDev determines collision between sprites, does it determine collision for the entire sprite tile or just what's inside it?  For instance, I have a meele attack.  The player sprite animation for it is 5 frames of 128x128 tiles, but the sword only "breaks" the player sprite tile for 1 frame and then only in 32pixels of the "SwordSwing"s 128x128 sprite tile.  Currently, I have the other 4 frames of the "SwordSwing" break sprite set as "blank" tiles.  Do those blank tiles collide with enemy sprites?  Or is it only the 1 frame with the actual sword blade in it?  I've played with the size of the "SwordSwing" sprite (changed from 32->64->128 pixels), but it's hard to discern any difference.  Most of the time if I attack while the enemy sprite is inside that 128 pixel range, the enemy still collides with the player sprite.

Thanks again for all the help

3
Script / Re: Attack Script (multiple q's)
« on: 2006-08-09, 09:36:52 AM »
Thanks.  I found the problem.  One of the projects I was referencing had the Select Case line running as a global.  I moved it inside the sub as {If ProjectObj.GamePlayer.rMap.Name="AttackTestMap"} and it worked.  Still trying to figure out what that person's reasoning was behind doing it that way.  Just in case I need something like that in the future. :)

Thanks for the reply.

4
Script / Attack Script (multiple q's)
« on: 2006-08-06, 12:19:21 PM »
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.
Code: [Select]
' 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

5
Help/FAQ / Re: Chaining attacks
« on: 2006-07-16, 08:56:00 AM »
Let me make sure I'm understanding this.  For a jab, jab, uppercut the pseudocode would be something like this:

timer=60  ;with timer decreasing every frame or onMove or whatever
attackIndex=0  ;keeps track of how many times attack has been pressed

If Player attacks AND attackIndex==0
    Use attack 1
    attackIndex++
    start timer
Else If Player attacks AND attackIndex==1
     Use attack 1
     attackIndex++
Else If Player attacks AND attackIndex==2 AND timer>0
     Use attack 2
     attackIndex=0
     timer=0

Sorry about the sloppy code.  I haven't programmed in a while, and I'm still learning VBscript.

6
Help/FAQ / Chaining attacks
« on: 2006-07-15, 02:28:48 PM »
Not sure if this should be in scripting or not.  I'm looking for a sample game that allows a player to do the 'ol 3 hit combo.  I'm currently working on a small project with some other folks, and we thought it would be cool if the player had normal, power, and combo attacks.  The combo would be activated by pressing the attack button 3 times within a time limit.  It's pretty much just like the old school brawler games.

Pages: [1]