Multiple magic schools spells pack
- AndakRainor
- Posts: 674
- Joined: Thu Nov 20, 2014 5:18 pm
Re: Multiple magic schools spells pack
Hi Akroma! So, did you have time to test the new spells ? What do you think of them ?
Re: Multiple magic schools spells pack
Heheh I did - but I went straight to the code and have been reading (and by reading, I mean learning) that most the day
Ill make a visit to the test dungeon tonight to be sure!
Ill make a visit to the test dungeon tonight to be sure!
Labyrinth of Lies (viewtopic.php?f=14&t=4400)
Legacy of Lies (viewtopic.php?f=22&t=12983&hilit=+legacy)
Legacy of Lies (viewtopic.php?f=22&t=12983&hilit=+legacy)
- AndakRainor
- Posts: 674
- Joined: Thu Nov 20, 2014 5:18 pm
Re: Multiple magic schools spells pack
-- change log --
version 2.1
Correction of a bug with the Immortal spell.
One unused empty directory removed.
version 2.1
Correction of a bug with the Immortal spell.
One unused empty directory removed.
- AndakRainor
- Posts: 674
- Joined: Thu Nov 20, 2014 5:18 pm
Re: Multiple magic schools spells pack
-- change log --
version 2.2
Correction of a bug with the light system. It was not compatible with game saving in the previous version.
New icon for the vengeance spell.
version 2.2
Correction of a bug with the light system. It was not compatible with game saving in the previous version.
New icon for the vengeance spell.
Re: Multiple magic schools spells pack
I have been trying to get the download to work on this ge.tt site.. but somehow it doesnt open the download
What Am I doing wrong?
What Am I doing wrong?
- AndakRainor
- Posts: 674
- Joined: Thu Nov 20, 2014 5:18 pm
Re: Multiple magic schools spells pack
Oh sorry, I don't use ge.tt anymore and did not update the original post (done)! You should get the pack here: http://www.nexusmods.com/legendofgrimrock2/mods/60/?
Re: Multiple magic schools spells pack
My ge.tt has been playing up too quit often
Labyrinth of Lies (viewtopic.php?f=14&t=4400)
Legacy of Lies (viewtopic.php?f=22&t=12983&hilit=+legacy)
Legacy of Lies (viewtopic.php?f=22&t=12983&hilit=+legacy)
Re: Multiple magic schools spells pack
Hi AndakRainor, I have tried installing the spells pack to my mod, and I am using fw.lua , I have set hook_framework = true and added script spells_functions
on map, when I try to run mod I get an error:
mod_assets/spells_pack/party.lua:37: attempt to index a global 'fw' (a nil value)
I think I have installed spells pack correctly, could you please advise
Thxs in advance
billb52
on map, when I try to run mod I get an error:
mod_assets/spells_pack/party.lua:37: attempt to index a global 'fw' (a nil value)
I think I have installed spells pack correctly, could you please advise
Thxs in advance
billb52
- AndakRainor
- Posts: 674
- Joined: Thu Nov 20, 2014 5:18 pm
Re: Multiple magic schools spells pack
In theory, "fw" is the id of the script entity you have linked to the fw.lua file. If you have done this then the global "fw" should be defined. So I think two problems can explain what you get:
- The script has not the id "fw". I don't think it is possible, iirc the hook framework needs this id to be functional.
- The script entity is not spawned at the time the party is already spawned and all its component init functions have been called. This could come from the order you placed the two objects on your maps. Is the hook framework script on your first map? In orrr3, where I used the spell pack with this flag, the starting_location object for the party is at (13,29) and the object "fw" is at (1,30). Both are on the first map at elevation 0. Where did you place those objects?
- The script has not the id "fw". I don't think it is possible, iirc the hook framework needs this id to be functional.
- The script entity is not spawned at the time the party is already spawned and all its component init functions have been called. This could come from the order you placed the two objects on your maps. Is the hook framework script on your first map? In orrr3, where I used the spell pack with this flag, the starting_location object for the party is at (13,29) and the object "fw" is at (1,30). Both are on the first map at elevation 0. Where did you place those objects?
Re: Multiple magic schools spells pack
Hi AndakRainor, thanks for your reply, stupid me forgot to place the 'fw' script on the map! ALL OK now