Act File Adjustment Tool

Angelmelody

(\ /) ( . .)
Messages
772
Points
0
Age
32
Location
new_1-1,53,111
Github
Angelmelody
Emulator
How to use:

1. open an act file .

o35wwT.jpg


2. Adjust the horizontal slider to what percentage you want.

 
dh2Ur.jpg


3. save act file (the 2nd option is save , 3rd option is save as..)

isfMx_.jpg


the testing mob

H7EzEq.jpg


ActTest.rar

 

Attachments

Last edited by a moderator:
Very nice, are you the creator of this software?

 
Ah excellent I found this upon translation;

Author: A piece of sugar * °

 
so it is for resizing mobs ? you can do the same with a lua script in actor2 itself
default_tongue.png
.

but nice work considering this was made when only actor was around (i'm guessing ) 
default_biggrin.png


oh and in case you were wondering here is the script :

Code:
--put your percentage as newMag. I am using 150% of the originalnewMag = 150for AID = 0, GetNumAct()-1 do  for FID = 0, GetNumFrame(AID)-1 do    for PID = 0, GetNumPat(AID, FID)-1 do      curXMag = GetXMag(AID, FID, PID)	  SetXMag(AID, FID, PID, curXMag * newMag/100.0)		  curYMag = GetYMag(AID, FID, PID)	  SetYMag(AID, FID, PID, curYMag * newMag/100.0)    end  endend
 
Back
Top