05-15-2023, 04:13 AM 
(This post was last modified: 05-15-2023, 04:25 AM by kyonides.
 Edit Reason: Changed Comments
)
	
	
	 I've been busy developing a new script, namely SkopesMenu XP, that should allow the player to choose a custom skill scope in battle for specific skills.
 I've been busy developing a new script, namely SkopesMenu XP, that should allow the player to choose a custom skill scope in battle for specific skills. How would that work?
 How would that work? It's quite easy to explain. You just need to get a recipe to be able to change it via a menu.
 It's quite easy to explain. You just need to get a recipe to be able to change it via a menu.Of course, the script has a couple of ways to safely store those recipes.
- In the Game_Actor class - Applied Recipes
 
- In the Game_Party class - Recipes Ready to be Assigned to an Actor
 
- In the Game_System class - Purchasable Recipes
 
You could also create several recipes for the same skill with different settings... and prices.

Here you can take a look at the embedded comments.
Code:
# Every SKopes::Skill has the following properties:
#  - id      (an Integer)
#  - price   (an Integer)
#  - sp_cost (an Integer)
#  - scopes  (an Array [0,1,2] of scopes)
# - Add New Skill Scope Recipe! - It will be unique.
#   You can create several Recipes for the Same Skill as well.
  # List of Parameters:
  #  - SkillID
  #  - Price
  #  - SP Cost
# skill = SKopes.skill(SkillID, Price, SP Cost)
# - Add a List of Scopes
# skill.set_scopes(Scope1, etc.)
# - Send it to a specific Container: :party or :system
#   Party's Container  - Active Recipes
#   System's Container - Purchasable Recipes
# skill.send2(Container)
"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.
![[Image: SP1-Scripter.png]](https://www.save-point.org/images/userbars/SP1-Scripter.png)
![[Image: SP1-Writer.png]](https://www.save-point.org/images/userbars/SP1-Writer.png)
![[Image: SP1-Poet.png]](https://www.save-point.org/images/userbars/SP1-Poet.png)
![[Image: SP1-PixelArtist.png]](https://www.save-point.org/images/userbars/SP1-PixelArtist.png)
![[Image: SP1-Reporter.png]](https://i.postimg.cc/GmxWbHyL/SP1-Reporter.png)
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.
![[Image: SP1-Scripter.png]](https://www.save-point.org/images/userbars/SP1-Scripter.png)
![[Image: SP1-Writer.png]](https://www.save-point.org/images/userbars/SP1-Writer.png)
![[Image: SP1-Poet.png]](https://www.save-point.org/images/userbars/SP1-Poet.png)
![[Image: SP1-PixelArtist.png]](https://www.save-point.org/images/userbars/SP1-PixelArtist.png)
![[Image: SP1-Reporter.png]](https://i.postimg.cc/GmxWbHyL/SP1-Reporter.png)
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

 
 
 What's up, RMers?
 What's up, RMers?
 

