- Joined
- Jan 6, 2014
- Messages
- 81
- Reaction score
- 8
- First Language
- Polish
- Primarily Uses
HI I have a question im using SaS IV Saphire Battle system with aditional BLocking script and there is a setup at the begining of the script which looks like this:
module Block_Core
# Key used to block (default is R, which means W on your keyboard)
Block_Key = Input::R
# Sprite name
# If the current character sprite is "Adam", when the hero is blocking
# it's sprite will be "Adam_block"
Block_Character_Name = ""
# Sprite index
Block_Character_Index = 0
# Block duration (in frames)
Block_Duration = 20
# Block cooldown (in frames)
Block_Cooldown = 1
end
and I wan to set up the Block_Duration to a specific value taken from variable
I tried using it like this: Block_Duration = $game_variables[5] but Im getting error... anyone knows how to put it in correct way?
Khas isnt answering any question so Im asking here...
module Block_Core
# Key used to block (default is R, which means W on your keyboard)
Block_Key = Input::R
# Sprite name
# If the current character sprite is "Adam", when the hero is blocking
# it's sprite will be "Adam_block"
Block_Character_Name = ""
# Sprite index
Block_Character_Index = 0
# Block duration (in frames)
Block_Duration = 20
# Block cooldown (in frames)
Block_Cooldown = 1
end
and I wan to set up the Block_Duration to a specific value taken from variable
I tried using it like this: Block_Duration = $game_variables[5] but Im getting error... anyone knows how to put it in correct way?
Khas isnt answering any question so Im asking here...

