Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- diff --git a/fairy_skilltalk_new.txt b/fairy_skilltalk_new.txt
- index e5c3db4..f0e57b0 100644
- --- a/fairy_skilltalk_new.txt
- +++ b/fairy_skilltalk_new.txt
- @@ -77,6 +77,7 @@ Whew. . . maybe I should find a new job. . .
- @putselect What_happens_when_I_run_out_of_Energy? 10
- @putselect What_is_that_clock_in_the_upper_right_of_the_screen? 12
- @putselect Give_me_some_tips! 1
- +@putselect Help_me_\c[2]CHEAT\c[0]! 900 # New cheat menu option!
- @@ -827,5 +828,398 @@ I-I guess you should grab a spear
- or bow and start chipping away!
- A sword or axe just isn't going to cut it!
- +# START: Cheat Menu
- +@if select == 900
- +
- +@mes fairy4
- +WHAT?!
- +You want me to help you \c[2]CHEAT\c[0]?
- +
- +@mes fairy3
- +. . . FINE, I guess I can do that.
- +How do you want to \c[2]CHEAT\c[0]?
- +
- +@putselect Fill_my_life,_stamina,_and_energy. 1
- +@putselect Give_me_life_regeneration. 2
- +@putselect Give_me_10_levels. 3
- +@putselect Give_me_5000_silver. 4
- +@putselect Repair_my_equipped_gear. 5
- +@putselect Give_me_a_free_Awakening. 6
- +@putselect Teleport_me_randomly. 7
- +@putselect Save_my_game. 8
- +@@if param_plus_analysis < 200
- +@putselect Give_me_perfect_appraisal_skill. 9
- +@@ifend
- +@putselect Modify_my_stats. 10
- +@putselect Give_me_items! 20
- +@select inputlist
- +
- +# Fill my life, stamina, and energy.
- +@@if select == 1
- +@flash
- +@life param_maxlife
- +@st param_maxst
- +@genki param_maxgenki
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +You're all filled up. . .
- +
- +## Give me life regeneration.
- +@@if select == 2
- +@flash
- +@setstatus player 130
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .there's your regeneration.
- +
- +# Give me 10 levels.
- +@@if select == 3
- +@flash
- +@exp 1000
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +There you go, some free levels. . .
- +
- +# Give me 5000 silver.
- +@@if select == 4
- +@flash
- +@money 5000
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +Don't spend it all in one place. . .
- +
- +# Repair my equipped gear.
- +@@if select == 5
- +@flash
- +@repair armor 1000
- +@repair weapon 1000
- +@repair plus 1000
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .you're all fixed up now.
- +
- +# Give me a free Awakening.
- +@@if select == 6
- +@flash
- +@useskill 10
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .okay, now go and do something productive.
- +
- +# Teleport me randomly.
- +@@if select == 7
- +@flash
- +@warp -10 5 50
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .done.
- +
- +# Save my game.
- +@@if select == 8
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .fine.
- +
- +@flash
- +@save
- +
- +# Give me perfect appraisal skill.
- +@@if select == 9
- +@flash
- +@val param_plus_analysis = 200
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .you got it.
- +
- +# Modify my stats.
- +@@if select == 10
- +@mes fairy3
- +. . .I can do that.
- +What do you want?
- +
- +@putselect Give_me_strength. 1
- +@putselect Give_me_agility. 2
- +@putselect Give_me_vitality. 3
- +@putselect Give_me_intellect. 4
- +@putselect Give_me_willpower. 5
- +@putselect Give_me_charisma. 6
- +@putselect Increase_my_critical_hit_rate. 7
- +@putselect Increase_my_weight_limit. 8
- +@putselect Increase_my_combo_attack_rate. 9
- +@putselect Increase_my_life. 10
- +@putselect Increase_my_stamina. 11
- +@putselect Increase_my_energy. 12
- +@select inputlist
- +
- +## Give me strength.
- +@@@if select == 1
- +@flash
- +@val tmp1 = 10
- +@val param_str += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your strength increased by $tmp1.
- +
- +## Give me agility.
- +@@@if select == 2
- +@flash
- +@val tmp1 = 10
- +@val param_agi += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your agility increased by $tmp1.
- +
- +## Give me vitality.
- +@@@if select == 3
- +@flash
- +@val tmp1 = 10
- +@val param_vit += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your vitality increased by $tmp1.
- +
- +## Give me intellect.
- +@@@if select == 4
- +@flash
- +@val tmp1 = 10
- +@val param_int += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your intellect increased by $tmp1.
- +
- +## Give me willpower.
- +@@@if select == 5
- +@flash
- +@flash
- +@val tmp1 = 10
- +@val param_wil += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your willpower increased by $tmp1.
- +
- +## Give me charisma.
- +@@@if select == 6
- +@flash
- +@flash
- +@val tmp1 = 10
- +@val param_chm += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your charisma increased by $tmp1.
- +
- +## Increase my critical hit rate.
- +@@@if select == 7
- +@flash
- +@val tmp1 = 10
- +@val param_crit += $tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your critical hit rate increased by $tmp1%.
- +
- +## Increase my weight limit.
- +@@@if select == 8
- +@flash
- +@val tmp1 = 6
- +@val param_weight += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your weight limit increased by $tmp1.
- +
- +## Increase my combo attack rate.
- +@@@if select == 9
- +@flash
- +@val tmp1 = 10
- +@val param_combo += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your combo attack rate increased by $tmp1%.
- +
- +## Increase my life.
- +@@@if select == 10
- +@flash
- +@val tmp1 = 10
- +@val param_maxlife += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your life increased by $tmp1.
- +
- +## Increase my stamina.
- +@@@if select == 11
- +@flash
- +@val tmp1 = 30
- +@val param_maxst += tmp1
- +@val tmp1 /= 10
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your stamina increased by $tmp1.
- +
- +## Increase my energy.
- +@@@if select == 12
- +@flash
- +@val tmp1 = 15
- +@val param_maxgenki += tmp1
- +
- +@se [LvUP]C4_11206_twinkle.ogg
- +@mes fairy3
- +. . .your energy increased by $tmp1.
- +
- +@@@ifend
- +
- +# Give me items!
- +@@if select == 20
- +@mes fairy3
- +What kind of item do you want?
- +
- +@putselect I_want_a_Goddess_item. 1
- +@putselect I_want_a_holy_item. 2
- +@select inputlist
- +
- +## I want a Goddess item.
- +@@@if select == 1
- +@mes fairy3
- +Which one?
- +
- +@putselect The_Goddess_Dagger! 1
- +@putselect The_Goddess_Clothing! 2
- +@select inputlist
- +
- +### The Goddess Dagger!
- +@@@@if select == 1
- +@mes fairy3
- +Here's your Goddess Dagger.
- +
- +@getitem 10050 120 10,14,14,14,14,14,14,14,14,14,14
- +
- +### The Goddess Clothing!
- +@@@@if select == 2
- +@mes fairy3
- +Here's your Goddess Clothing.
- +
- +@getitem 20021 100 10,10,10,10,10,10,10,10,10,10,10
- +
- +@@@@ifend
- +
- +## I want a holy item.
- +@@@if select == 2
- +@mes fairy3
- +Which one?
- +
- +@putselect The_Crimson_Sun_Blade! 1
- +@putselect The_Holy_Moon_Sword! 2
- +@putselect The_Holy_Sword_Caledwulff! 3
- +@putselect The_Holy_Axe_Elizabeth! 4
- +@putselect Neith's_Holy_Bow! 5
- +@putselect The_Holy_Lance_Longinus! 6
- +@putselect Salacia's_Staff! 7
- +@putselect The_Holy_Sword_of_Storms! 8
- +@putselect The_Heavy_Holy_Axe! 9
- +@putselect The_Holy_Dagger! 10
- +@putselect A_stack_of_Holy_Throwing_Blades! 11
- +@select inputlist
- +
- +### The Crimson Sun Blade!
- +@@@@if select == 1
- +@mes fairy3
- +Here's your Crimson Sun Blade.
- +
- +@getitem 10020 60 1,14
- +
- +### The Holy Moon Sword!
- +@@@@if select == 2
- +@mes fairy3
- +Here's your Holy Moon Sword.
- +
- +@getitem 10021 60 1,14
- +
- +### The Holy Sword Caledwulff!
- +@@@@if select == 3
- +@mes fairy3
- +Here's your Holy Sword Caledwulff.
- +
- +@getitem 10022 60 1,14
- +
- +### The Holy Axe Elizabeth!
- +@@@@if select == 4
- +@mes fairy3
- +Here's your Holy Axe Elizabeth.
- +
- +@getitem 10023 60 1,14
- +
- +### Neith's Holy Bow!
- +@@@@if select == 5
- +@mes fairy3
- +Here's your Neith's Holy Bow.
- +
- +@getitem 10024 60 1,14
- +
- +### The Holy Lance Longinus!
- +@@@@if select == 6
- +@mes fairy3
- +Here's your Holy Lance Longinus.
- +
- +@getitem 10025 120 1,14
- +
- +### Salacia's Staff!
- +@@@@if select == 7
- +@mes fairy3
- +Here's your Salacia's Staff.
- +
- +@getitem 10026 150 1,14 # Salacia's Staff
- +
- +### The Holy Sword of Storms!
- +@@@@if select == 8
- +@mes fairy3
- +Here's your Holy Sword of Storms.
- +
- +@getitem 10080 60 1,14
- +
- +### The Heavy Holy Axe!
- +@@@@if select == 9
- +@mes fairy3
- +Here's your Heavy Holy Axe.
- +
- +@getitem 10081 40 1,14
- +
- +### The Holy Dagger!
- +@@@@if select == 10
- +@mes fairy3
- +Here's your Holy Dagger.
- +
- +@getitem 10084 70 1,14
- +
- +### A stack of Holy Throwing Blades!
- +@@@@if select == 11
- +@mes fairy3
- +Here're your Holy Throwing Blades.
- +
- +@getitem 40176 999
- +
- +@@@@ifend
- +
- +@@@ifend
- +
- +@@ifend
- +
- +# END: Cheat Menu
- +
- @ifend
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement