Hi, I'm relatively new to RMXP and prior to this, I've never had any encounters with scripts/coding, etc. I've spent the last few days reading these forums and I've learnt a lot but I'm having a little trouble with CRLS.
What I WANT to do is have my main character 'Upgrade' his soul limit after certain events in the story.
I get a syntax error when I call a script to learn a new limit, using this line:
$game_actors[1].set_new_limit('Meteor', 101)
After finally getting the Easy Party Switcher script to work (I read the entire forum) I found that people encountered layout problems (beginning a new line in the right place)
QuoteKeep in mind that you have to use
Code:
$game_party.actors[0].disabled_for_party =
true
or
Code:
$game_party.actors[0].
disabled_for_party = true
and not
Code:
$game_party.actors[0].disabled_for_party = true
Is it the same problem here?
Or maybe I have to 'forget' the previous limit beforehand somehow?
The skills in the limit database are like this:
when 1
limit_name = "Dark Slash"
limit_id = 100
slsr_rate = 100
slhp_rate = 100
slsp_rate = 100
slsr_consume = 100
slhp_consume = 50
slsp_consume = 0
cdsr_rate = 0
cdhp_rate = 0
cdsp_rate = 0
cdsr_consume = 0
cdhp_consume = 0
cdsp_consume = 0
allow_suicide = false
when 1
limit_name = "Meteor"
limit_id = 101
slsr_rate = 100
slhp_rate = 100
slsp_rate = 100
slsr_consume = 100
slhp_consume = 50
slsp_consume = 0
cdsr_rate = 0
cdhp_rate = 0
cdsp_rate = 0
cdsr_consume = 0
cdhp_consume = 0
cdsp_consume = 0
allow_suicide = false
One more problem: I noticed slhp_consume rate couldn't go over 50% (when it does, the move just doesn't appear), is there anyway to have it so that you can use it no matter how much HP you have (even at 100%), but then it reduces your HP to 1?
My head hurts...
Oh, one more thing... more of a shoutout really, You're awesome Blizzard. I've seen you help out people in need countless times in these forum (and promptly), It's refreshing to see an admin so comitted.