Irrlicht Engine (1.8.4) does not match the version the appli

User avatar
ulla
Member
 
Posts: 35
Joined: Wed Feb 04, 2015 09:22
GitHub: IIIullaIII
IRC: ulla
In-game: ulla

Irrlicht Engine (1.8.4) does not match the version the appli

by ulla » Fri Sep 16, 2016 15:15

Hi all i have some problem with some mod ,
i use archlinux manjaro daniella minetest 0.4.14
whit my wip mod i have ever problem with this string:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
sound = default_node_sound_wood_default --(or with any sound default
)

idem with LIGHT_MAX i can't add sound at node or use light_max
restituite ever error : example
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
attempt to call field 'node_sound_glass_defaults' (a nil value)
but other mods example mesecon or pipework or homedecor work fine ,but to day i have problem whit mutch mod :

Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all

-------------
  Separator
-------------

2016-09-16 17:02:02: WARNING[Main]: Irrlicht: Warning: The library version of the Irrlicht Engine (1.8.4) does not match the version the application was compiled with (1.8.3). This may cause problems.
2016-09-16 17:02:04: ERROR[Main]: mod "hazmat_suit" has unsatisfied dependencies:  "technic"
2016-09-16 17:02:04: ERROR[Main]: mod "technic_armor" has unsatisfied dependencies:  "technic_worldgen"
2016-09-16 17:02:04: WARNING[Main]: NodeDefManager: Ignoring CONTENT_IGNORE redefinition
2016-09-16 17:02:04: ERROR[Main]: get_biome_list: failed to get biome 'savanna_swamp'
2016-09-16 17:02:04: ERROR[Main]: register_decoration: couldn't get all biomes
2016-09-16 17:02:04: WARNING[Main]: Assignment to undeclared global "err" inside a function at /home/ulla/.minetest/mods/admin_tools/init.lua:139.
2016-09-16 17:02:04: WARNING[Main]: Assignment to undeclared global "tables" inside a function at /home/ulla/.minetest/mods/admin_tools/init.lua:139.
2016-09-16 17:02:04: WARNING[Main]: Field "maxwear" is deprecated; replace with uses=1/maxwear
2016-09-16 17:02:04: WARNING[Main]: Field "maxwear" is deprecated; replace with uses=1/maxwear
2016-09-16 17:02:04: WARNING[Main]: Field "maxwear" is deprecated; replace with uses=1/maxwear
2016-09-16 17:02:04: WARNING[Main]: Field "tile_images": Deprecated; new name is "tiles".
2016-09-16 17:02:04: ERROR[Main]: ModError: Failed to load and run script from /usr/share/minetest/games/minetest/mods/xpanes/init.lua:
2016-09-16 17:02:04: ERROR[Main]: ...r/share/minetest/games/minetest/mods/xpanes/init.lua:163: attempt to call field 'node_sound_glass_defaults' (a nil value)
2016-09-16 17:02:04: ERROR[Main]: stack traceback:
2016-09-16 17:02:04: ERROR[Main]:    ...r/share/minetest/games/minetest/mods/xpanes/init.lua:163: in main chunk
2016-09-16 17:02:04: ERROR[Main]: Check debug.txt for details.
i have installed minetest and irrlicht in official repository of manjaro with octopi and him install irrlicht 1.8.4 whit minetest 0.4.14 and no have other the problem i appear when i have tryed using string sound= default....... for my new mod after i have removed string and work but after few minute this string no work in other mood too?? sorry for my very bad english
 

User avatar
ulla
Member
 
Posts: 35
Joined: Wed Feb 04, 2015 09:22
GitHub: IIIullaIII
IRC: ulla
In-game: ulla

Re: Irrlicht Engine (1.8.4) does not match the version the a

by ulla » Fri Sep 16, 2016 21:05

the problem was that I had added at the beginning of lua files of my mod:
"Default = {}"
I found on the web to try if "sounds default.node_wood_default = ()," worked,
Instead, it generate errors to the other mod .
But how do I add a sound to a node for example on_pounch?
 

User avatar
Krock
Member
 
Posts: 3598
Joined: Thu Oct 03, 2013 07:48
GitHub: SmallJoker

Re: Irrlicht Engine (1.8.4) does not match the version the a

by Krock » Sat Sep 17, 2016 09:18

About the Lua problem:

Make sure that your mod contains the line "default" in the file depends.txt, so these functions are loaded before parsing your new code.
Then define the glass sound like this:
Your phone or window isn't wide enough to display the code box. If it's a phone, try rotating it to landscape mode.
Code: Select all
minetest.register_node("mymod:nodename", {
   ...
   sounds = default.node_sound_glass_defaults() -- make sure that the line above ends with a comma ","
})


About the Irrlicht warning:

I think you can ignore this when you don't get any crashes caused by that. Irrlicht is backwards compatible, so this should not be an issue. To remove this warning, re-compile Minetest or downgrade your irrlicht library version to 1.8.3.
Newest Win32 builds - Find a mod - All my mods
ALL YOUR DONATION ARE BELONG TO PARAMAT (Please support him and Minetest)
New DuckDuckGo !bang: !mtmod <keyword here>
 

User avatar
ulla
Member
 
Posts: 35
Joined: Wed Feb 04, 2015 09:22
GitHub: IIIullaIII
IRC: ulla
In-game: ulla

Re: Irrlicht Engine (1.8.4) does not match the version the a

by ulla » Sun Sep 18, 2016 14:50

TY i resolved the problem are not default in the file depends :-P and inutil string in my mod default={}
 

User avatar
ExeterDad
Member
 
Posts: 1121
Joined: Sun Jun 01, 2014 20:00
In-game: ExeterDad

Re: Irrlicht Engine (1.8.4) does not match the version the a

by ExeterDad » Sun Sep 18, 2016 15:30

Awesome ulla :)
Perhaps edit your first post and add SOLVED to the subject line?
٩(̾●̮̮̃̾•̃̾)۶

Kibbie and I have a beautiful public server now! HOMETOWN
 

User avatar
ulla
Member
 
Posts: 35
Joined: Wed Feb 04, 2015 09:22
GitHub: IIIullaIII
IRC: ulla
In-game: ulla

Re: Irrlicht Engine (1.8.4) does not match the version the a

by ulla » Sun Sep 25, 2016 10:13

ExeterDad wrote:Awesome ulla :)
Perhaps edit your first post and add SOLVED to the subject line?

how put "resolved " ? :-p
 

User avatar
ulla
Member
 
Posts: 35
Joined: Wed Feb 04, 2015 09:22
GitHub: IIIullaIII
IRC: ulla
In-game: ulla

Re: Irrlicht Engine (1.8.4) does not match the version the a

by ulla » Thu Sep 29, 2016 16:25

is not resolved i have resolved my problem for mod but not for irrlicht version in manjaro i downloaded minetest and automatic download irrlicht 1.8.4 but minetest mods are developed whit irrlicht 1.8.3 no have other old version in aur too i have modified all init.lua by hand and i have solved mutch problem my ask is:
I have to wait for everyone to update the mods, or minetest stays with irrlicht 1.8.3?
I do not understand why archlinux install a game with an engine not compatible with the current version!. You recommended a downgrade, or you have any better solution?
 


Return to Minetest Problems

Who is online

Users browsing this forum: No registered users and 4 guests

cron