Jump to content
  • 0

Actor AABBGGRR


EL Dragon

Question


  • Group:  Members
  • Topic Count:  86
  • Topics Per Day:  0.02
  • Content Count:  591
  • Reputation:   146
  • Joined:  06/19/12
  • Last Seen:  

I have a Sprite and AABBGGRR is 889955FF and I wanted ask if there is a faster possibility to change the AABBGGRR each peer hand takes forever

 

 

Link to comment
Share on other sites

2 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  661
  • Reputation:   670
  • Joined:  11/12/12
  • Last Seen:  

I have a Sprite and AABBGGRR is 889955FF and I wanted ask if there is a faster possibility to change the AABBGGRR each peer hand takes forever

 

 

Sure, you could use the following script : 

for AID = 0, GetNumAct() - 1 do
	for FID = 0, GetNumFrame(AID) - 1 do
		for PID = 0, GetNumPat(AID, FID) - 1 do
			SetA(AID, FID, PID, 0x88);
			SetB(AID, FID, PID, 0x99);
			SetG(AID, FID, PID, 0x55);
			SetR(AID, FID, PID, 0xFF);
		end;
	end;
end;

Simply go in Script(S) > Edit... > copy and paste the above code and click on Run.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  86
  • Topics Per Day:  0.02
  • Content Count:  591
  • Reputation:   146
  • Joined:  06/19/12
  • Last Seen:  

ty that goes :D

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...