Jump to content

How to Install EET on Android


Recommended Posts

17 hours ago, mickabouille said:

Ah sorry I misread the original post, that's about installing inside termux (on android). For that you can use any package (common, windows or linux). And hope there is no use of native binaries inside (which is probably the general case on linux because on linux, the binaries are supposed to already be installed).

I think that should be possible, but may required the android device to be rooted (to allow you to overwrite the app data)

Ok, so I've moved my Windows EET over to my phone (not rooted). Overall it works, but the portraits in the override folder are not being read by the game. Any idea how to solve it? Placing the bmp files into Android/data/com.beamdog.xxx/files doesn't work either.

Screenshot_2023-10-04-11-48-12-16_b4ae8549b41f5ab81ac593dedc4da25d.thumb.jpg.b1dea5dba8ef0cf4279506f214313d50.jpg

Link to comment

I don't know how it is on mobile, on PC (win/linux at least, idk for mac) I _think_ the portraits are not pulled from override but from the user directory of the game (where the saves are.. saved  and the config lua file is).

 

EDIT: no that's for custom portraits.

 

It depends on _what_ you copied : just override ? Or all files (data/, lang/, movies/, music/ and scripts/ should be copied too, as well as chitin.key)

 

And we should probably conitnue on another topic (maybe on already exists) because thisz method is not the same as what the original post described.

Edited by mickabouille
Link to comment
On 10/4/2023 at 7:28 PM, mickabouille said:

I don't know how it is on mobile, on PC (win/linux at least, idk for mac) I _think_ the portraits are not pulled from override but from the user directory of the game (where the saves are.. saved  and the config lua file is).

But on PC, it works for me when I put the bmp files into override folder. They're AI enhanced versions of the default portraits. By the way, I'm using the Dragonspear UI++.Baldr004.thumb.jpg.31478ada37a9c85ba444495dc117ec8c.jpg

Yeah, i copied all the files according to the original post. "data, lang, movies, music, override, scripts, worldmap, engine.lua, and chitin.key"

*Edit: I've found the solution. Need to modify the UI.menu file and change some of the coding for the multi portrait picker. For those who are using Dragonspear UI++, you need to modify the following code block:

	label { enabled "MultiPortraitPicker == 1" area 400 156 80 125 bitmap lua "GetPortrait(1)" }
	label { enabled "MultiPortraitPicker == 1" area 494 156 80 125 bitmap lua "GetPortrait(2)" }
	label { enabled "MultiPortraitPicker == 1" area 588 156 80 125 bitmap lua "GetPortrait(3)" }
	label { enabled "MultiPortraitPicker == 1" area 682 156 80 125 bitmap lua "GetPortrait(4)" }
	label { enabled "MultiPortraitPicker == 1" area 776 156 80 125 bitmap lua "GetPortrait(5)" }
	label { enabled "MultiPortraitPicker == 1" area 870 156 80 125 bitmap lua "GetPortrait(6)" }
	label { enabled "MultiPortraitPicker == 1" area 964 156 80 125 bitmap lua "GetPortrait(7)" }
	label { enabled "MultiPortraitPicker == 1" area 400 295 80 125 bitmap lua "GetPortrait(8)" }
	label { enabled "MultiPortraitPicker == 1" area 494 295 80 125 bitmap lua "GetPortrait(9)" }
	label { enabled "MultiPortraitPicker == 1" area 588 295 80 125 bitmap lua "GetPortrait(10)" }
	label { enabled "MultiPortraitPicker == 1" area 682 295 80 125 bitmap lua "GetPortrait(11)" }
	label { enabled "MultiPortraitPicker == 1" area 776 295 80 125 bitmap lua "GetPortrait(12)" }
	label { enabled "MultiPortraitPicker == 1" area 870 295 80 125 bitmap lua "GetPortrait(13)" }
	label { enabled "MultiPortraitPicker == 1" area 964 295 80 125 bitmap lua "GetPortrait(14)" }
	label { enabled "MultiPortraitPicker == 1" area 400 434 80 125 bitmap lua "GetPortrait(15)" }
	label { enabled "MultiPortraitPicker == 1" area 494 434 80 125 bitmap lua "GetPortrait(16)" }
	label { enabled "MultiPortraitPicker == 1" area 588 434 80 125 bitmap lua "GetPortrait(17)" }
	label { enabled "MultiPortraitPicker == 1" area 682 434 80 125 bitmap lua "GetPortrait(18)" }
	label { enabled "MultiPortraitPicker == 1" area 776 434 80 125 bitmap lua "GetPortrait(19)" }
	label { enabled "MultiPortraitPicker == 1" area 870 434 80 125 bitmap lua "GetPortrait(20)" }
	label { enabled "MultiPortraitPicker == 1" area 964 434 80 125 bitmap lua "GetPortrait(21)" }
	label { enabled "MultiPortraitPicker == 1" area 400 573 80 125 bitmap lua "GetPortrait(22)" }
	label { enabled "MultiPortraitPicker == 1" area 494 573 80 125 bitmap lua "GetPortrait(23)" }
	label { enabled "MultiPortraitPicker == 1" area 588 573 80 125 bitmap lua "GetPortrait(24)" }
	label { enabled "MultiPortraitPicker == 1" area 682 573 80 125 bitmap lua "GetPortrait(25)" }
	label { enabled "MultiPortraitPicker == 1" area 776 573 80 125 bitmap lua "GetPortrait(26)" }
	label { enabled "MultiPortraitPicker == 1" area 870 573 80 125 bitmap lua "GetPortrait(27)" }
	label { enabled "MultiPortraitPicker == 1" area 964 573 80 125 bitmap lua "GetPortrait(28)" }

	button { enabled "MultiPortraitPicker == 1" area 395 151 90 135 bam "rgcfram" toggle togglePort1 action "togglePortrait1(); OnPortraitArrayClick(1)" }
	button { enabled "MultiPortraitPicker == 1" area 489 151 90 135 bam "rgcfram" toggle togglePort2 action "togglePortrait2(); OnPortraitArrayClick(2)" }
	button { enabled "MultiPortraitPicker == 1" area 583 151 90 135 bam "rgcfram" toggle togglePort3 action "togglePortrait3(); OnPortraitArrayClick(3)" }
	button { enabled "MultiPortraitPicker == 1" area 677 151 90 135 bam "rgcfram" toggle togglePort4 action "togglePortrait4(); OnPortraitArrayClick(4)" }
	button { enabled "MultiPortraitPicker == 1" area 771 151 90 135 bam "rgcfram" toggle togglePort5 action "togglePortrait5(); OnPortraitArrayClick(5)" }
	button { enabled "MultiPortraitPicker == 1" area 865 151 90 135 bam "rgcfram" toggle togglePort6 action "togglePortrait6(); OnPortraitArrayClick(6)" }
	button { enabled "MultiPortraitPicker == 1" area 959 151 90 135 bam "rgcfram" toggle togglePort7 action "togglePortrait7(); OnPortraitArrayClick(7)" }
	button { enabled "MultiPortraitPicker == 1" area 395 290 90 135 bam "rgcfram" toggle togglePort8 action "togglePortrait8(); OnPortraitArrayClick(8)" }
	button { enabled "MultiPortraitPicker == 1" area 489 290 90 135 bam "rgcfram" toggle togglePort9 action "togglePortrait9(); OnPortraitArrayClick(9)" }
	button { enabled "MultiPortraitPicker == 1" area 583 290 90 135 bam "rgcfram" toggle togglePort10 action "togglePortrait10(); OnPortraitArrayClick(10)" }
	button { enabled "MultiPortraitPicker == 1" area 677 290 90 135 bam "rgcfram" toggle togglePort11 action "togglePortrait11(); OnPortraitArrayClick(11)" }
	button { enabled "MultiPortraitPicker == 1" area 771 290 90 135 bam "rgcfram" toggle togglePort12 action "togglePortrait12(); OnPortraitArrayClick(12)" }
	button { enabled "MultiPortraitPicker == 1" area 865 290 90 135 bam "rgcfram" toggle togglePort13 action "togglePortrait13(); OnPortraitArrayClick(13)" }
	button { enabled "MultiPortraitPicker == 1" area 959 290 90 135 bam "rgcfram" toggle togglePort14 action "togglePortrait14(); OnPortraitArrayClick(14)" }
	button { enabled "MultiPortraitPicker == 1" area 395 429 90 135 bam "rgcfram" toggle togglePort15 action "togglePortrait15(); OnPortraitArrayClick(15)" }
	button { enabled "MultiPortraitPicker == 1" area 489 429 90 135 bam "rgcfram" toggle togglePort16 action "togglePortrait16(); OnPortraitArrayClick(16)" }
	button { enabled "MultiPortraitPicker == 1" area 583 429 90 135 bam "rgcfram" toggle togglePort17 action "togglePortrait17(); OnPortraitArrayClick(17)" }
	button { enabled "MultiPortraitPicker == 1" area 677 429 90 135 bam "rgcfram" toggle togglePort18 action "togglePortrait18(); OnPortraitArrayClick(18)" }
	button { enabled "MultiPortraitPicker == 1" area 771 429 90 135 bam "rgcfram" toggle togglePort19 action "togglePortrait19(); OnPortraitArrayClick(19)" }
	button { enabled "MultiPortraitPicker == 1" area 865 429 90 135 bam "rgcfram" toggle togglePort20 action "togglePortrait20(); OnPortraitArrayClick(20)" }
	button { enabled "MultiPortraitPicker == 1" area 959 429 90 135 bam "rgcfram" toggle togglePort21 action "togglePortrait21(); OnPortraitArrayClick(21)" }
	button { enabled "MultiPortraitPicker == 1" area 395 568 90 135 bam "rgcfram" toggle togglePort22 action "togglePortrait22(); OnPortraitArrayClick(22)" }
	button { enabled "MultiPortraitPicker == 1" area 489 568 90 135 bam "rgcfram" toggle togglePort23 action "togglePortrait23(); OnPortraitArrayClick(23)" }
	button { enabled "MultiPortraitPicker == 1" area 583 568 90 135 bam "rgcfram" toggle togglePort24 action "togglePortrait24(); OnPortraitArrayClick(24)" }
	button { enabled "MultiPortraitPicker == 1" area 677 568 90 135 bam "rgcfram" toggle togglePort25 action "togglePortrait25(); OnPortraitArrayClick(25)" }
	button { enabled "MultiPortraitPicker == 1" area 771 568 90 135 bam "rgcfram" toggle togglePort26 action "togglePortrait26(); OnPortraitArrayClick(26)" }
	button { enabled "MultiPortraitPicker == 1" area 865 568 90 135 bam "rgcfram" toggle togglePort27 action "togglePortrait27(); OnPortraitArrayClick(27)" }
	button { enabled "MultiPortraitPicker == 1" area 959 568 90 135 bam "rgcfram" toggle togglePort28 action "togglePortrait28(); OnPortraitArrayClick(28)" }

into:

	label { enabled "MultiPortraitPicker == 1" area 400 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(1)" }
	label { enabled "MultiPortraitPicker == 1" area 494 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(2)" }
	label { enabled "MultiPortraitPicker == 1" area 588 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(3)" }
	label { enabled "MultiPortraitPicker == 1" area 682 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(4)" }
	label { enabled "MultiPortraitPicker == 1" area 776 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(5)" }
	label { enabled "MultiPortraitPicker == 1" area 870 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(6)" }
	label { enabled "MultiPortraitPicker == 1" area 964 156 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(7)" }
	label { enabled "MultiPortraitPicker == 1" area 400 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(8)" }
	label { enabled "MultiPortraitPicker == 1" area 494 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(9)" }
	label { enabled "MultiPortraitPicker == 1" area 588 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(10)" }
	label { enabled "MultiPortraitPicker == 1" area 682 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(11)" }
	label { enabled "MultiPortraitPicker == 1" area 776 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(12)" }
	label { enabled "MultiPortraitPicker == 1" area 870 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(13)" }
	label { enabled "MultiPortraitPicker == 1" area 964 295 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(14)" }
	label { enabled "MultiPortraitPicker == 1" area 400 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(15)" }
	label { enabled "MultiPortraitPicker == 1" area 494 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(16)" }
	label { enabled "MultiPortraitPicker == 1" area 588 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(17)" }
	label { enabled "MultiPortraitPicker == 1" area 682 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(18)" }
	label { enabled "MultiPortraitPicker == 1" area 776 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(19)" }
	label { enabled "MultiPortraitPicker == 1" area 870 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(20)" }
	label { enabled "MultiPortraitPicker == 1" area 964 434 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(21)" }
	label { enabled "MultiPortraitPicker == 1" area 400 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(22)" }
	label { enabled "MultiPortraitPicker == 1" area 494 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(23)" }
	label { enabled "MultiPortraitPicker == 1" area 588 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(24)" }
	label { enabled "MultiPortraitPicker == 1" area 682 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(25)" }
	label { enabled "MultiPortraitPicker == 1" area 776 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(26)" }
	label { enabled "MultiPortraitPicker == 1" area 870 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(27)" }
	label { enabled "MultiPortraitPicker == 1" area 964 573 80 125 bam "rgcfram" ScaleToClip sequence lua "GetPortrait(28)" }


	button { enabled "MultiPortraitPicker == 1" area 395 151 90 135 bitmap lua "GetPortrait(1)" toggle togglePort1 action "togglePortrait1(); OnPortraitArrayClick(1)" }
	button { enabled "MultiPortraitPicker == 1" area 489 151 90 135 bitmap lua "GetPortrait(2)" toggle togglePort2 action "togglePortrait2(); OnPortraitArrayClick(2)" }
	button { enabled "MultiPortraitPicker == 1" area 583 151 90 135 bitmap lua "GetPortrait(3)" toggle togglePort3 action "togglePortrait3(); OnPortraitArrayClick(3)" }
	button { enabled "MultiPortraitPicker == 1" area 677 151 90 135 bitmap lua "GetPortrait(4)" toggle togglePort4 action "togglePortrait4(); OnPortraitArrayClick(4)" }
	button { enabled "MultiPortraitPicker == 1" area 771 151 90 135 bitmap lua "GetPortrait(5)" toggle togglePort5 action "togglePortrait5(); OnPortraitArrayClick(5)" }
	button { enabled "MultiPortraitPicker == 1" area 865 151 90 135 bitmap lua "GetPortrait(6)" toggle togglePort6 action "togglePortrait6(); OnPortraitArrayClick(6)" }
	button { enabled "MultiPortraitPicker == 1" area 959 151 90 135 bitmap lua "GetPortrait(7)" toggle togglePort7 action "togglePortrait7(); OnPortraitArrayClick(7)" }
	button { enabled "MultiPortraitPicker == 1" area 395 290 90 135 bitmap lua "GetPortrait(8)" toggle togglePort8 action "togglePortrait8(); OnPortraitArrayClick(8)" }
	button { enabled "MultiPortraitPicker == 1" area 489 290 90 135 bitmap lua "GetPortrait(9)" toggle togglePort9 action "togglePortrait9(); OnPortraitArrayClick(9)" }
	button { enabled "MultiPortraitPicker == 1" area 583 290 90 135 bitmap lua "GetPortrait(10)" toggle togglePort10 action "togglePortrait10(); OnPortraitArrayClick(10)" }
	button { enabled "MultiPortraitPicker == 1" area 677 290 90 135 bitmap lua "GetPortrait(11)" toggle togglePort11 action "togglePortrait11(); OnPortraitArrayClick(11)" }
	button { enabled "MultiPortraitPicker == 1" area 771 290 90 135 bitmap lua "GetPortrait(12)" toggle togglePort12 action "togglePortrait12(); OnPortraitArrayClick(12)" }
	button { enabled "MultiPortraitPicker == 1" area 865 290 90 135 bitmap lua "GetPortrait(13)" toggle togglePort13 action "togglePortrait13(); OnPortraitArrayClick(13)" }
	button { enabled "MultiPortraitPicker == 1" area 959 290 90 135 bitmap lua "GetPortrait(14)" toggle togglePort14 action "togglePortrait14(); OnPortraitArrayClick(14)" }
	button { enabled "MultiPortraitPicker == 1" area 395 429 90 135 bitmap lua "GetPortrait(15)" toggle togglePort15 action "togglePortrait15(); OnPortraitArrayClick(15)" }
	button { enabled "MultiPortraitPicker == 1" area 489 429 90 135 bitmap lua "GetPortrait(16)" toggle togglePort16 action "togglePortrait16(); OnPortraitArrayClick(16)" }
	button { enabled "MultiPortraitPicker == 1" area 583 429 90 135 bitmap lua "GetPortrait(17)" toggle togglePort17 action "togglePortrait17(); OnPortraitArrayClick(17)" }
	button { enabled "MultiPortraitPicker == 1" area 677 429 90 135 bitmap lua "GetPortrait(18)" toggle togglePort18 action "togglePortrait18(); OnPortraitArrayClick(18)" }
	button { enabled "MultiPortraitPicker == 1" area 771 429 90 135 bitmap lua "GetPortrait(19)" toggle togglePort19 action "togglePortrait19(); OnPortraitArrayClick(19)" }
	button { enabled "MultiPortraitPicker == 1" area 865 429 90 135 bitmap lua "GetPortrait(20)" toggle togglePort20 action "togglePortrait20(); OnPortraitArrayClick(20)" }
	button { enabled "MultiPortraitPicker == 1" area 959 429 90 135 bitmap lua "GetPortrait(21)" toggle togglePort21 action "togglePortrait21(); OnPortraitArrayClick(21)" }
	button { enabled "MultiPortraitPicker == 1" area 395 568 90 135 bitmap lua "GetPortrait(22)" toggle togglePort22 action "togglePortrait22(); OnPortraitArrayClick(22)" }
	button { enabled "MultiPortraitPicker == 1" area 489 568 90 135 bitmap lua "GetPortrait(23)" toggle togglePort23 action "togglePortrait23(); OnPortraitArrayClick(23)" }
	button { enabled "MultiPortraitPicker == 1" area 583 568 90 135 bitmap lua "GetPortrait(24)" toggle togglePort24 action "togglePortrait24(); OnPortraitArrayClick(24)" }
	button { enabled "MultiPortraitPicker == 1" area 677 568 90 135 bitmap lua "GetPortrait(25)" toggle togglePort25 action "togglePortrait25(); OnPortraitArrayClick(25)" }
	button { enabled "MultiPortraitPicker == 1" area 771 568 90 135 bitmap lua "GetPortrait(26)" toggle togglePort26 action "togglePortrait26(); OnPortraitArrayClick(26)" }
	button { enabled "MultiPortraitPicker == 1" area 865 568 90 135 bitmap lua "GetPortrait(27)" toggle togglePort27 action "togglePortrait27(); OnPortraitArrayClick(27)" }
	button { enabled "MultiPortraitPicker == 1" area 959 568 90 135 bitmap lua "GetPortrait(28)" toggle togglePort28 action "togglePortrait28(); OnPortraitArrayClick(28)" }


 

Edited by GloriousCheese
Link to comment

Join the conversation

You are posting as a guest. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   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...