Hi, I am having a problem and the manual is not helping!
I want to add a simple little text message on the screen when you perform certain actions, such as when doing a skill (fishing, mining) I want it to show something like Fishing skill +1 ! over the actor.
I thought this would be very similar to how ABS show attack points on the screen when you hit a monster, so I've been staring at the code for sever ABS scripts for ages and I cannot see how!
This is what I have so far.. but it doesn't work
What am I missing?! Thanks!
I want to add a simple little text message on the screen when you perform certain actions, such as when doing a skill (fishing, mining) I want it to show something like Fishing skill +1 ! over the actor.
I thought this would be very similar to how ABS show attack points on the screen when you hit a monster, so I've been staring at the code for sever ABS scripts for ages and I cannot see how!
This is what I have so far.. but it doesn't work
Code:
bitmap = Bitmap.new(10, 10) # I don't know how to make this on the actor
bitmap.draw_text(100, 100, 160, 20, "Fishing Skill + 1 !, 1) # Changing these numbers around doesn't help
What am I missing?! Thanks!