Jump to content

python selectInterface


Recommended Posts

Found it out

for those ppl who ask the same question, here the solution.!

Open introselect.py and search for

SLOT_ROTATION = [135.0, 225.0, 315.0, 45.0]

now edit it to

SLOT_ROTATION = [51.0, 102.0, 153.0, 204.0]

In the same File look for the def Onupdate Funktion and add at the end of it:

			distance = 50.0
			rotRadian = self.curRotation[i] * (math.pi*2) / 360.0
			if self.slot == i:
				x = 0
			elif i == self.slot - 1:
				x = 200
			elif i == self.slot - 2:
				x = 400
			elif i == self.slot - 3:
				x = 600
			elif i == self.slot + 1:
				x = -200
			elif i == self.slot + 2:
				x = -400
			elif i == self.slot + 3:
				x = -600
			y = 0			
			
			chr.SetPixelPosition(int(x), int(y), 30)

If you still can see the other Characters, just edit the line "chr.SetPixelPosition(int(x), int(y), 30)" to "chr.SetPixelPosition(int(x) *2, int(y), 30

You are fucking Welcome. Thanks to mrapc from epvp@

Edited by .Arno
  • Love 1
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.