Staredit Network > Forums > Modding Assistance > Topic: Iscript sprites -> max number of frames is 255?
Iscript sprites -> max number of frames is 255?
Jan 5 2017, 12:27 am
By: DirectShift  

Jan 5 2017, 12:27 am DirectShift Post #1



Hello, I want to make sure why the unit I just finished designing and adding to starcraft was failing, but I think I know why that is.

I read somewhere that the max number of images for an unit (for example zealot) is 255, is this true? because I'm using like 400.

Thanks



None.

Jan 5 2017, 1:52 am O)FaRTy1billion[MM] Post #2

👻 👾 👽 💪

The limit on frames should be 65535. The width and height are limited to 255, but frame count should not be an issue (for example, unit\zerg\zlurker.grp has 595 frames).

If you would like, you could post or PM the GRP and maybe the iscript you are using and I or someone could take a look at it to see what could be the issue.



TinyMap2 - Latest in map compression! ( 7/09/14 - New build! )
EUD Action Enabler - Lightweight EUD/EPD support! (ChaosLauncher/MPQDraft support!)
EUDDB - topic - Help out by adding your EUDs! Or Submit reference files in the References tab!
MapSketch - New image->map generator!
EUDTrig - topic - Quickly and easily convert offsets to EUDs! (extended players supported)
SC2 Map Texture Mask Importer/Exporter - Edit texture placement in an image editor!
\:farty\: This page has been viewed [img]http://farty1billion.dyndns.org/Clicky.php?img.gif[/img] times!

Jan 5 2017, 2:32 am DirectShift Post #3



Quote from O)FaRTy1billion[MM]
The limit on frames should be 65535. The width and height are limited to 255, but frame count should not be an issue (for example, unit\zerg\zlurker.grp has 595 frames).

If you would like, you could post or PM the GRP and maybe the iscript you are using and I or someone could take a look at it to see what could be the issue.

Thanks farty, I picked the grp and found that, for some reason, the grp converter just grabbed just 223 frames.

So, that was the issue!



None.

Jan 5 2017, 3:06 am DirectShift Post #4



Sorry, it keeps failing.
The problem appears in ZealotWalking, this is the code:

Quote
# ----------------------------------------------------------------------------- #
# This is a decompile of the iscript.bin file 'data\scripts\iscript.bin'
# created on: Mon Jan 02 21:35:02 2017
# ----------------------------------------------------------------------------- #

# ----------------------------------------------------------------------------- #
# This header is used by images.dat entries:
# 151 Zealot (protoss\zealot.grp)
.headerstart
IsId 163
Type 21
Init ZealotInit
Death ZealotDeath
GndAttkInit ZealotGndAttkInit
AirAttkInit [NONE]
Unused1 [NONE]
GndAttkRpt ZealotGndAttkRpt
AirAttkRpt [NONE]
CastSpell [NONE]
GndAttkToIdle ZealotGndAttkToIdle
AirAttkToIdle [NONE]
Unused2 [NONE]
Walking ZealotWalking
WalkingToIdle ZealotWalkingToIdle
SpecialState1 [NONE]
SpecialState2 [NONE]
AlmostBuilt [NONE]
Built [NONE]
Landing [NONE]
LiftOff [NONE]
IsWorking [NONE]
WorkingToIdle [NONE]
WarpIn ZealotWarpIn
.headerend
# ----------------------------------------------------------------------------- #

ZealotInit:
imgul 152 0 0 # ZealotShad (protoss\pzeShad.grp)
ZealotWalkingToIdle:
playfram 0xaa # frame set 5
goto ZealotLocal00

ZealotLocal00:
wait 125
goto ZealotLocal00

ZealotDeath:
playsnd 678 # Protoss\ZEALOT\PZeDth00.WAV
setfldirect 0
playfram 0x198 # frame set 13
wait 2
playfram 0x199 # frame set 13
wait 2
playfram 0x19a # frame set 13
wait 2
playfram 0x19b # frame set 13
wait 2
playfram 0x19c # frame set 13
wait 2
playfram 0x19d # frame set 13
wait 2
playfram 0x19e # frame set 13
wait 2
playfram 0x19f # frame set 13
wait 2
end

ZealotGndAttkInit:
playfram 0x00 # frame set 0
wait 1
ZealotGndAttkRpt:
playsndrand 2 662 663 # Protoss\ZEALOT\pzeAtt00.WAV, Protoss\ZEALOT\pzeAtt01.WAV
playfram 0x11 # frame set 1
wait 1
nobrkcodestart
playfram 0x22 # frame set 2
wait 1
playfram 0x33 # frame set 3
wait 1
playfram 0x44 # frame set 4
wait 1
playfram 0x55 # frame set 3
wait 1
playfram 0x66 # frame set 2
wait 1
playfram 0x77 # frame set 1
attackmelee 1 664 # Protoss\ZEALOT\pzeHit00.WAV
wait 1
playfram 0x88 # frame set 1
wait 1
playfram 0x99 # frame set 0
nobrkcodeend
gotorepeatattk
ignorerest
ZealotGndAttkToIdle:
goto ZealotWalkingToIdle

ZealotWalking:
move 4
wait 1
playfram 0xbb # frame set 5
move 4
wait 1
playfram 0xcc # frame set 6
move 4
wait 1
playfram 0xdd # frame set 7
move 4
wait 1
playfram 0xee # frame set 8
move 4
wait 1
playfram 0xff # frame set 9
move 4
wait 1
playfram 0x110 # frame set 10
move 4
wait 1
playfram 0x121 # frame set 11
move 4
wait 1
playfram 0x132 # frame set 11
move 4
wait 1
playfram 0x143 # frame set 11
move 4
wait 1
playfram 0x154 # frame set 11
move 4
wait 1
playfram 0x165 # frame set 11
move 4
wait 1
playfram 0x176 # frame set 11
move 4
wait 1
playfram 0x187 # frame set 12
goto ZealotWalking

ZealotWarpIn:
imgol 154 0 0 # Unknown154 (protoss\zealot.grp)
goto ZealotLocal00



im also adding the grp

Attachments:
zealot.grp
Hits: 2 Size: 440.98kb



None.

Jan 5 2017, 6:44 pm O)FaRTy1billion[MM] Post #5

👻 👾 👽 💪

Have you updated pzeShad.grp? Since it now has far fewer frames than zealot.grp, it could be what is crashing. Try removing or commenting out the imgul under ZealotInit and see if that makes it no longer crash.



TinyMap2 - Latest in map compression! ( 7/09/14 - New build! )
EUD Action Enabler - Lightweight EUD/EPD support! (ChaosLauncher/MPQDraft support!)
EUDDB - topic - Help out by adding your EUDs! Or Submit reference files in the References tab!
MapSketch - New image->map generator!
EUDTrig - topic - Quickly and easily convert offsets to EUDs! (extended players supported)
SC2 Map Texture Mask Importer/Exporter - Edit texture placement in an image editor!
\:farty\: This page has been viewed [img]http://farty1billion.dyndns.org/Clicky.php?img.gif[/img] times!

Jan 5 2017, 6:51 pm Pr0nogo Post #6



In images.dat, change the entry for the zealot shadow to reference the zealot grp. It'll create an accurate shadow of your grp.




Jan 5 2017, 7:17 pm O)FaRTy1billion[MM] Post #7

👻 👾 👽 💪

Yes, that too. And I'm not sure how familiar you are with iscript, but be sure to change the imgul to have a y offset so you can see the shadow in that case. Something like imgul 152 0 7 (based on probe's and vulture's shadow).



TinyMap2 - Latest in map compression! ( 7/09/14 - New build! )
EUD Action Enabler - Lightweight EUD/EPD support! (ChaosLauncher/MPQDraft support!)
EUDDB - topic - Help out by adding your EUDs! Or Submit reference files in the References tab!
MapSketch - New image->map generator!
EUDTrig - topic - Quickly and easily convert offsets to EUDs! (extended players supported)
SC2 Map Texture Mask Importer/Exporter - Edit texture placement in an image editor!
\:farty\: This page has been viewed [img]http://farty1billion.dyndns.org/Clicky.php?img.gif[/img] times!

Jan 5 2017, 9:37 pm DirectShift Post #8



Quote from Pr0nogo
In images.dat, change the entry for the zealot shadow to reference the zealot grp. It'll create an accurate shadow of your grp.

Great effect, I thought I had to also draw all the shadows!!

Quote from O)FaRTy1billion[MM]
Yes, that too. And I'm not sure how familiar you are with iscript, but be sure to change the imgul to have a y offset so you can see the shadow in that case. Something like imgul 152 0 7 (based on probe's and vulture's shadow).

I know programming languages, so I understand iscript.
Thanks for the clarification, it was definitely a problem with shadows!!!



None.

Options
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[01:56 am]
Oh_Man -- cool bit of history, spellsword creator talking about the history of EUD ^
[09:24 pm]
Moose -- denis
[05:00 pm]
lil-Inferno -- benis
[10:41 am]
v9bettel -- Nice
[2024-4-19. : 1:39 am]
Ultraviolet -- no u elky skeleton guy, I'll use em better
[2024-4-18. : 10:50 pm]
Vrael -- Ultraviolet
Ultraviolet shouted: How about you all send me your minerals instead of washing them into the gambling void? I'm saving up for a new name color and/or glow
hey cut it out I'm getting all the minerals
[2024-4-18. : 10:11 pm]
Ultraviolet -- :P
[2024-4-18. : 10:11 pm]
Ultraviolet -- How about you all send me your minerals instead of washing them into the gambling void? I'm saving up for a new name color and/or glow
[2024-4-17. : 11:50 pm]
O)FaRTy1billion[MM] -- nice, now i have more than enough
Please log in to shout.


Members Online: Oh_Man