Search found 110 matches

by Xugro
Sat Feb 09, 2019 4:51 pm
Forum: Games and Creations
Topic: Endless Dungeon
Replies: 25
Views: 38280

Re: Endless Dungeon

I got to level 26 before I found another bug. If a blue spider tries to attack the player the game crashes. Attached is a savegame for the level so that you can test this more easily. Here is the stack traceback: Error: main.lua:4567: attempt to index a nil value stack traceback: [string "boot....
by Xugro
Wed Jan 23, 2019 5:36 pm
Forum: Games and Creations
Topic: "Greek War"
Replies: 5
Views: 7130

Re: "Greek War"

It is a fun game. Getting to kill all enemies before they reach you gets really challenging. Some weapon upgrades (e.g. speed, area of effect) would be nice. There is a bug in level 10*(n+1) for n>=1. The hitpoints for the boss monster do not get reset, but set to 0 ( enemies.lua line 139) instead o...
by Xugro
Sun Jan 13, 2019 10:37 pm
Forum: Games and Creations
Topic: Endless Dungeon
Replies: 25
Views: 38280

Re: Endless Dungeon

Both bugs (level 21+ and blue ooze) are now fixed. Thanks! :awesome: On the middle difficulty level I managed to get to level 22. But this is really hard. I had to try multiple times with different builds and I got really lucky on the items. In the end I had 20 Con and 19 Str and could survive most ...
by Xugro
Mon Dec 17, 2018 10:29 am
Forum: Games and Creations
Topic: Endless Dungeon
Replies: 25
Views: 38280

Re: Endless Dungeon

Wow, it is getting harder and harder with each update. This time I managed to get to level 10 before getting stuck. The blue Ooze casting Freeze stopped me completely. Even after the timer of the spell ran out I could not move or attack. I attached my savegame up to this point so you can hopefully t...
by Xugro
Mon Nov 12, 2018 11:23 am
Forum: Games and Creations
Topic: Endless Dungeon
Replies: 25
Views: 38280

Re: Endless Dungeon

Just to say I think that bug is now fixed and I've added shops :) That makes things much easier :) But I have found another bug: I cannot go to level 21. The game hangs in the loading screen of level 21 and even waiting some time does not help. I attached a savegame (at level 20) so that you can ch...
by Xugro
Wed Nov 07, 2018 12:56 am
Forum: Games and Creations
Topic: Endless Dungeon
Replies: 25
Views: 38280

Re: Endless Dungeon

Nice game! It is really hard (or I am really bad at it :D). What I missed the most was a way to heal fast. If you are alone you can just wait for your HP to fill up, but this just takes a long time. It would be nice if the infos of an item are shown if you "hover" over it. And additionally...
by Xugro
Wed Oct 17, 2018 4:44 pm
Forum: Support and Development
Topic: Printing Machine
Replies: 5
Views: 4382

Re: Printing Machine

You could use another program to do the printing for you. On Windows you could use Wordpad to print by command. For this you have to save your Text-File and then use os.execute("write /p filename") (See the Lua OS Library Tutorial for more information for os.execute().) The advantage of us...
by Xugro
Tue Oct 16, 2018 12:03 am
Forum: Support and Development
Topic: Word Processor
Replies: 8
Views: 6407

Re: Word Processor

Here is a very small example. This shows you the basic idea.
by Xugro
Fri Jul 20, 2018 3:06 pm
Forum: Support and Development
Topic: Perlin noise and terrain generation[closed]
Replies: 3
Views: 3269

Re: Perlin noise and terrain generation.

Just last weekend I coded up a small value noise island generator. It still need fine tuning and post-processing, but the core algorithm (value noise) is complete. If you want you can take a peek at my code.

I followed this german tutorial: https://www.youtube.com/watch?v=xVYl8nYl_TI
by Xugro
Thu Aug 10, 2017 7:50 pm
Forum: General
Topic: Need example code for grab and drop object with mouse?
Replies: 4
Views: 4431

Re: Need example code for grab and drop object with mouse?

Here is an example code that does the same thing as your Javascript example. :)