Question, at the bottom of my quests, it shows my item slot number 1 (which is default to potion) but I've got it labeled *consumables*
Problem in Game
http://s27.postimg.org/9zi8bm4qr/What_it_looks_ingame.pngWhat my item database looks like
http://s30.postimg.org/c6mxja93l/My_Database.pngThe two script portions below are the only things I changed within Modern Algerbra's script.
ICONS = {
all: 97, # The icon for the All Quests category
active: 96, # The icon for the Active Quests category
complete: 101, # The icon for the Complete Quests category
failed: 99, # The icon for the Failed Quests category
client: 7895, # The icon for client data. If none wanted, set to 0
location: 2413, # The icon for location data. If none wanted, set to 0
reward_gold: 2771, # The icon for gold rewards. If none wanted, set to 0
reward_exp: 10044, # The icon for exp rewards. If none wanted, set to 0
} # <= Do not touch.
when 1 # Quest 1 - Fairy Enough
q[:name] = "Fairy Enough"
q[:level] = 2
q[:icon_index] = 7
q[:description] = "You met a grieving hunter in the Dense Forest, and he's asked you to avenge his son; who was lost in the woods a few days ago. He started to search for his son yesterday, which isn't very fatherly like, but none the less you've agreed to track down the one responsible for his untimely demise. But before you can take on the Fairy Queen, you've got to lure her out... maybe find an kill her daughters, if you can."
q[:objectives][0] = "Find one of the Fairy Queen's daughters."
q[:objectives][1] = "Almost there, find another one of the Fairy Gueen's daughters."
q[:objectives][2] = "That's it, the Fairy Queen has shown herself, and she's pissed!"
q[:objectives][3] = "Return to the Grieving Hunter."
q[:prime_objectives] = [0, 1, 2, 3]
q[:custom_categories] = []
q[:banner] = ""
q[:banner_hue] = 0
q[:client] = "A Grieving Hunter"
q[:location] = "Dense Forest"
q[:common_event_id] = 0
q[:rewards] = [
[:gold, 500],
]
q[:layout] = false
when 2 # Quest 2 - Blood Alchemy
q[:name] = "Blood Alchemy"
q[:level] = 3
q[:icon_index] = 7
q[:description] = "The aspiring alchemist as requested for you to locate a total of ten Blood Rubies in order to further her experiments in the alchemy field. She has not been able to find any inside the ruins, though she has documentation stating that the Blood Rubies were located within the ruins."
q[:objectives][0] = "Find ten Blood Rubies."
q[:objectives][1] = "Return to the Aspiring Alchemist."
q[:objectives][2] = ""
q[:objectives][3] = ""
q[:prime_objectives] = [0, 1]
q[:custom_categories] = []
q[:banner] = ""
q[:banner_hue] = 0
q[:client] = "Aspiring Alchemist"
q[:location] = "Plundered Ruin Entrance"
q[:common_event_id] = 0
q[:rewards] = [
[:gold, 500],
]
q[:layout] = false
Looking for help from the creator, or anybody else. Don't know why it's doing that...
Thanks,
Altimos