-
Content Count
182 -
Joined
-
Last visited
-
Days Won
2
Everything posted by Foxkit
-
my throat hurts..
-
heh
-
bob... bob... bob.... >.<
-
XD
- Show next comments 9 more
-
-
I think this is the first time I've actually had to stop playing a game to sit down and think about a choice presented in the game.... wow... just wow....
-
What? long, annoying, and can't be skipped if you've seen over 9000 times.
-
I personally enjoyed it, but I was also 9 or 10 at the time.
-
Legend of the dragoon !!!!!! love that game
- Show next comments 9 more
-
-
Question for the Coders: How do you tell ruby to round up or down?
-
you have a few options:
float.floor
-rounds to the next integer towards 0, so
1.5.floor => 1
(-1.5).floor => -1
float.ceil
-rounds to the next integer away from 0, so
1.5.ceil => 2
(-1.5).ceil => -2
float.round
-just like standard rounding, if >= 0.5 round up, if < 0.5 round down, so
1.5.round = 2
1.4.round = 1
float.truncate
float.to_i
-these methods simply chop off the fractional bit, so
...
-
-
Thats exactly what I needed to know :D Thanks Kell
-
-
:( The orthodontists decided to clamp my mouth shut with the illusion of freedom with something called rubber bands... 6 of them...
-
... I thought I fixed it... It was working perfectly 5 minutes ago... :/ why CMS? why?
-
its been like 5 years
-
Good on you foxkit, keep at it. Patience and perseverance wins out.
-
@Bob, yes I'm still working on it :/
it doesn't feel like co-operating. But I'm also working on the equipment system. I just recently got it to display the items. Now I just have to get the stats, elements, and item consumption working as well xD.
- Show next comments 9 more
-