04-29-2024, 01:37 PM
(This post was last modified: 04-29-2024, 11:42 PM by kyonides.
Edit Reason: Edit #2
)
Those steps should be followed for certain, but I know it makes no sense to think that my script is causing that issue. Especially when the code doesn't alter the item consumption feature while using the direct or check system.
KIND OF IMPORTANT EDIT
Just in case Wulfo's recommendation fails, and there is any possibility that KEquipSkills XP could be kind of permissive at the time that it performs the corresponding direct or check tasks, try this piece of code as a separate script.
It's a slightly modified version of the same method already present in the main KEquipSkills script because it only adds this line of code:
SUGGESTION
You could also discard any external influence following a modified version of Wulfo's debugging methodology. Instead of starting eliminating scripts and all that stuff, you pick a copy of my demo, with default scripts untouched plus 2 KEquipSkills scripts plus Game INI Data Extractor and start adding your custom scripts one by one.
KIND OF IMPORTANT EDIT
Just in case Wulfo's recommendation fails, and there is any possibility that KEquipSkills XP could be kind of permissive at the time that it performs the corresponding direct or check tasks, try this piece of code as a separate script.
Code:
class Game_Party
def teach_item_skills?(item_id)
return if item_number(item_id) == 0
@actors.find {|actor| actor.teach_item_skills?(item_id) }
end
end
It's a slightly modified version of the same method already present in the main KEquipSkills script because it only adds this line of code:
Code:
return if item_number(item_id) == 0
SUGGESTION
You could also discard any external influence following a modified version of Wulfo's debugging methodology. Instead of starting eliminating scripts and all that stuff, you pick a copy of my demo, with default scripts untouched plus 2 KEquipSkills scripts plus Game INI Data Extractor and start adding your custom scripts one by one.
"For God has not destined us for wrath, but for obtaining salvation through our Lord Jesus Christ," 1 Thessalonians 5:9
Maranatha!
The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.
My Original Stories (available in English and Spanish)
List of Compiled Binary Executables I have published...
HiddenChest & Roole
Give me a free copy of your completed game if you include at least 3 of my scripts!
Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE
Maranatha!
The Internet might be either your friend or enemy. It just depends on whether or not she has a bad hair day.
My Original Stories (available in English and Spanish)
List of Compiled Binary Executables I have published...
HiddenChest & Roole
Give me a free copy of your completed game if you include at least 3 of my scripts!
Just some scripts I've already published on the board...
KyoGemBoost XP VX & ACE, RandomEnkounters XP, KSkillShop XP, Kolloseum States XP, KEvents XP, KScenario XP & Gosu, KyoPrizeShop XP Mangostan, Kuests XP, KyoDiscounts XP VX, ACE & MV, KChest XP VX & ACE 2016, KTelePort XP, KSkillMax XP & VX & ACE, Gem Roulette XP VX & VX Ace, KRespawnPoint XP, VX & VX Ace, GiveAway XP VX & ACE, Klearance XP VX & ACE, KUnits XP VX, ACE & Gosu 2017, KLevel XP, KRumors XP & ACE, KMonsterPals XP VX & ACE, KStatsRefill XP VX & ACE, KLotto XP VX & ACE, KItemDesc XP & VX, KPocket XP & VX, OpenChest XP VX & ACE