Skip to content

Commit

Permalink
Version 0.1.2 - outfit generator does not require OTB
Browse files Browse the repository at this point in the history
  • Loading branch information
gesior committed Jul 23, 2021
1 parent 447c9eb commit 8bd7f6f
Show file tree
Hide file tree
Showing 9 changed files with 1,129 additions and 1,087 deletions.
3 changes: 1 addition & 2 deletions outfitImageGenerator.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ <h2>Outfit images generator (for outfits PHP script)</h2>
<blockquote>
How to use:<br/><br/>
1. Type version of Tibia client.<br/>
2. Select SPR, DAT and OTB files.<br/>
2. Select SPR and DAT files.<br/>
3. Click "LOAD FILES", watch "Progress".<br/>
4. Click "GENERATE IMAGES", wait for ZIP file download.<br/>
<br/>
Expand All @@ -19,7 +19,6 @@ <h2>Outfit images generator (for outfits PHP script)</h2>
Client Version: <input type="number" id="clientversion" value="860"/> (format 860, NOT 8.60)<br/>
Sprite file: <input type="file" id="spr"/><br/>
Dat file: <input type="file" id="dat"/><br/>
Otb file: <input type="file" id="otb"/><br/>
Load idle animation when possible: <input type="checkbox" id="idleAnimation" checked/><br/>
Force enable extended sprites: <input type="checkbox" id="forceEnableExtendedSprites"/> (for old clients .dat and .spr
with this feature enabled)<br/>
Expand Down
1 change: 1 addition & 0 deletions outfitImageGenerator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class OutfitImageGenerator extends WebsiteImageGeneratorBase {
private idleAnimation = true;

init() {
this.otbRequired = false;
super.init();
this.idleAnimationCheckbox = <HTMLInputElement>document.getElementById('idleAnimation');
this.forceEnableExtendedSpritesCheckbox = <HTMLInputElement>document.getElementById('forceEnableExtendedSprites');
Expand Down
Loading

0 comments on commit 8bd7f6f

Please sign in to comment.