Search found 16 matches

by Crisim
Mon Oct 15, 2012 3:57 pm
Forum: Modding
Topic: [Lua:Help:Solved] onChangeInventory
Replies: 5
Views: 7130

Re: [Lua:Help] onChangeInventory

Filipsan is right, the changedInventory variable is setted by the last item of the last champion. maybe instead of checking all the backpacks and at the end return the result you could raise an event if something is changed. i.e. for x=1,31 do if(champstate.inventory[x] and champ:getItem(x)) then if...
by Crisim
Fri Oct 12, 2012 11:54 pm
Forum: Modding
Topic: Need some help for dialogs, please [fixed]
Replies: 5
Views: 5389

Re: Need some help for dialogs, please

you can wrap the text with double square brackets

Code: Select all

var verylongtext = [[
this is my story
...
...
...
and this is the end
]]
remember that with hudprint you can show a max of 4 rows
by Crisim
Wed Oct 10, 2012 11:32 am
Forum: Modding
Topic: Best editor for LUA scripting LOG?
Replies: 7
Views: 7445

Re: Best editor for LUA scripting LOG?

try to look at this stackoverflow answer maybe you could find some alternatives (I'll stick with notepad++)
by Crisim
Fri Oct 05, 2012 10:27 am
Forum: Modding
Topic: Help with a script
Replies: 5
Views: 4657

Re: Help with a script

could you try to connect the plate to a timer and wait .5 sec before destroying the ogre?

hope this help...
by Crisim
Fri Oct 05, 2012 9:11 am
Forum: Modding
Topic: How to check which item is in alcove?
Replies: 75
Views: 79728

Re: How to check which item is in alcove?

I think you could use the code from petri above -- This function returns true if the entity contains a given item. -- It works for any entity that implements the containedItems() method. function containsItem(entity, item) for i in entity:containedItems() do if i.name == item then return true end en...
by Crisim
Wed Oct 03, 2012 9:25 am
Forum: Modding
Topic: can i spawn script_entity?
Replies: 10
Views: 10253

Re: can i spawn script_entity?

Another way could be to create a level with only the script entities and place it at the very bottom of the dungeon opening the dungeon.lua and copy-paste the level at the bottom of the file. :idea: when you need to update the framework you need to copy-paste the level again overwriting the previous...
by Crisim
Tue Oct 02, 2012 12:04 pm
Forum: Modding
Topic: can i spawn script_entity?
Replies: 10
Views: 10253

Re: can i spawn script_entity?

Well, i achieved the desired result using static functions, if statements and a bunch of script variables.

IMO spawning a custom script_entity and destroying that once it finished its work would have been a cleaner approach.
by Crisim
Tue Oct 02, 2012 9:18 am
Forum: Modding
Topic: can i spawn script_entity?
Replies: 10
Views: 10253

Re: can i spawn script_entity?

if i write this in a script entity (not in a function) spawn("script_entity",1,13,15,0,"myTinyScript") myTinyScript:setSource("function newHiAll()\nhudPrint(\"Crisim rules!\")\nend") then this attached to a lever event function activateLever() myTinyScript.new...
by Crisim
Tue Oct 02, 2012 12:13 am
Forum: Modding
Topic: can i spawn script_entity?
Replies: 10
Views: 10253

can i spawn script_entity?

I have a lever connected to script_entity with this code function hiAll () local test = findEntity("script_entity_2") hudPrint("Hi Adventurers") if test == nil then test = spawn("script_entity",1,13,15,0,"script_entity_2") test:setSource("function newHiAl...
by Crisim
Fri Sep 28, 2012 10:29 am
Forum: Modding
Topic: EDITOR Feature Requests (not bugs!)
Replies: 317
Views: 352458

Re: EDITOR Feature Requests (not bugs!)

having the possibility to play cinematics between levels would be nice (better if in script entities, but for me between levels is acceptable). ;)

Crisim