Search found 4 matches

by ikki
Sat Oct 18, 2014 1:54 pm
Forum: Gameplay Hints
Topic: Hamlet of Stormbreach Hub key?
Replies: 7
Views: 22469

Re: Hamlet of Stormbreach Hub key?

Thanks. Found it. Also, I'm blind.
by ikki
Sat Oct 18, 2014 12:38 pm
Forum: Gameplay Hints
Topic: Hamlet of Stormbreach Hub key?
Replies: 7
Views: 22469

Hamlet of Stormbreach Hub key?

Hi, I have gone through all of Crystal mines and the Hamlet, but haven't located the key to the Hub. Any general pointers to where I should start looking? While probably not necessary (I can go through the "secret entrance" to skip most of the way back, I'd still like to find it. EDIT: Sol...
by ikki
Sat Sep 15, 2012 4:08 pm
Forum: Modding
Topic: Useful scripts repository
Replies: 105
Views: 245966

Re: Useful scripts repository

Iterator for champion backbag function championBackbagIterator(t) local i = 10 local n = 31 return function () i = i + 1 while i <= n and t:getItem(i) == nul do i = i + 1 end if i <= n then return t:getItem(i) end end end Now it can be used in a for loop. For example to check if the first champion ...
by ikki
Fri Sep 14, 2012 6:46 pm
Forum: Modding
Topic: Editor documentation questions
Replies: 1
Views: 2424

Editor documentation questions

None of the existing topics concentrated on the editor documentation, so I made a new topic. The script reference says this about altars: Altars share the same scripting API with Alcoves. The only difference is that an alcove is a wall item while an altar is placed in the middle of a cell. Yet tryin...