Search found 3 matches

by Applebaps
Thu Sep 15, 2016 7:16 pm
Forum: Support and Development
Topic: Having trouble building love from source
Replies: 12
Views: 9161

Re: Having trouble building love from source

Is the bug with building from source related to Freetype that it claims you don't have Freetype 2 even when you do? Because I recently set up an Arch Linux dual boot and tried to install from the main page link, and it errors out of ./configure saying I need Freetype 2 (which I have). It's possible ...
by Applebaps
Wed Sep 07, 2016 3:12 am
Forum: Support and Development
Topic: Implementing a speed-based turn counter system in a roguelike
Replies: 3
Views: 2645

Re: Implementing a speed-based turn counter system in a roguelike

BIG EDIT: I figured it out. -- in "Mob.lua" module function Mob:roll_call() who_is_here[self.y][self.x] = self.is_monster -- puts true or false in the space self.turn_counter = self.turn_counter * math.random(0.9, 1.1) -- randomizes turns a little table.insert(allMobs, self) end function M...
by Applebaps
Tue Sep 06, 2016 12:15 am
Forum: Support and Development
Topic: Implementing a speed-based turn counter system in a roguelike
Replies: 3
Views: 2645

Implementing a speed-based turn counter system in a roguelike

Never mind, I figured it out on my own. See my 2nd post for the solution.