Quantcast
Channel: RGSS3 Scripts (RMVX Ace) Latest Topics
Viewing all articles
Browse latest Browse all 416

RK5 Debug Console

$
0
0

RK5 Debug Console

"I was tired of testing stuff in the Editor - Now I can do that on move"

Version: 1.2

 

DKjNHO2.gif
def draw_introduction
This script adds an in-game console, that can be brought in any scene to perform a script call, that can be typed during gameplay.
There are many, many, many possibilities of using that console, starting from simply changing variables to even performing advanced codes to 
affect objects or even create them.
Besides freely typed strings, the console contains build-in commands, for quicker debugging like teleporting player to specific maps and coordinates.

end
 
uN42O57.gif
def features

-=> Use build-in commands! Think of cheats or commands in Minecraft lel
       (spawn items/gold, noclip and stuff like this)
-=> Hook objects like windows to adjust their position or size  
-=> Change variables, actor/enemy stats and many, many more
-=> Check values maintained by variables etc.
-=> Everything is up to you!
 
Planned Features:
-=> More commands - because why not?
 
end
 
qNtvtcn.gif
def draw_instructions
► SCRIPT DIFFICULTY: ★★☆☆☆ - ★★★★☆
                            from build-in commands - to advanced usage
 
► REQUIRED SCRIPTS!
  [■] CP Keyboard Input script by Neon Black
    └►[profile] http://forums.rpgmakerweb.com/index.php?/profile/626-neon-black/
    └►[script] http://pastebin.com/raw/rD4rQtKP
 
► USAGE:
-=> Place script(s) below ▼ Materials; above ▼ Main Process
-=> Plug & Play
-=> Press '~' (tilde) to bring up the console or exit from it.
-=> Type /help in console to view available commands and such.
end
 
tfN3Jnq.gif
def draw_currenty_available_commands

 

 

 


#==============================================================================#
# CURRENTLY AVAILABLE COMMANDS                                                 #
# ----------------------------                                                 #
# [■] Commands - Call pre-made codes.                                          #
#   └► Toogle Noclip Mode | /noclip                                            #
#   |    Desc: Allows to go through impassable objects.                        #
#   |    Usage: /noclip #=> Toogles Noclip Mode ON/OFF                         #
#   |                                                                          #
#   └► Give Item | /give [type] [id] [amount] OR /give <item name> [amount]    #
#   |    Desc:  Spawns an item in inventory. Types: 1=item 2=weapon 3=armor    #
#   |    Usage: /give 1 5 10 #=> Gives 10x item with ID 5 from item category   #
#   |           /give Small Potion 10 #=> Gives items based on their names     #
#   |           (If there will be multiple items with the same name, it will   #
#   |            give them all, even from various item categories)             #
#   |                                                                          #
#   └► Give All | /give all                                                    #
#   |    Desc:  Fills your inventory with everything.                          #
#   |    Usage: /give all #=> Gives EVERYTHING x 99                            #
#   |                                                                          #
#   └► Lose All | /lose all                                                    #
#   |    Desc:  Cleans up your inventory.                                      #
#   |    Usage: /lose all #=> Removes EVERYTHING x 999                         #
#   |                                                                          #
#   └► Spawn Gold | /gold [amount]                                             #
#   |    Desc:  Adds or removes a specified amount of gold to/from inventory.  #
#   |    Usage: /gold 1000 #=> Adds 1000 gold to player's inventory            #
#   |                                                                          #
#   └► Transfer Player | /tp map_id,x,y                                        #
#   |    Desc: Moves player to specific map and coordinates.                   #
#   |    Usage: /tp 2,4,5 #=> Moves player to [4,5] position on MAP002         #
#   |                                                                          #
#   └► Scene Call | /sc scene ("Scene_" is automatically added)                #
#   |    Desc: Calls a specific scene.                                         #
#   |    Usage: /sc Menu #=> Calls a Scene_Menu                                #
#   |                                                                          #
#   └► Escape From Battle | /run                                               #
#   |    Desc: Successfully escapes from battle.                               #
#   |    Usage: /run #=> Escapes from battle and gets back to Map              #
#   |                                                                          #
#   └► Force Victory | /win                                                    #
#        Desc: Forces victory by instant-killing all enemies.                  #
#        Usage: /win #=> Kills all enemies - Your new secret OP weapon         #
#                                                                              #
# [■] Functions - New logical keywords used by this console.                   #
#   └► Check Value | [var] == ?                                                #
#   |    Desc: Returns current value from object to the console.               #
#   |    Usage: $game_variables[5] == ? #=> Returns value from Variable #5     #
#   |                                                                          #
#   └► Hook Object | /hook [object]                                            #
#        Desc: Hooks an object to allow moving/resising by input.              #
#        Usage: /hook @status_window #=> Hooks f.e. a party window from menu   #
#                                                                              #
# [■] Shortcuts - Replaces keyword into a string when pressing [TAB] button.   #
#   └► Variables | #v                                                          #
#   |    Desc: Code used to handle variables.                                  #
#   |    Usage: #v =[TAB]=> $game_variables => $game_variables[3]              #
#   |                                                                          #
#   └► Switches | #s                                                           #
#   |    Desc: Code used to handle switches.                                   #
#   |    Usage: #s =[TAB]=> $game_switches => $game_switches[3]                #
#   |                                                                          #
#   └► Party Members | #a                                                      #
#   |    Desc: Refers to a member similar to eg. 'a.hp' in Damage Formulas.    #
#   |    Usage: #a =[TAB]=> $game_party.members => $game_party.members[3].hp   #
#   |                                                                          #
#   └► Party Members | #b                                                      #
#        Desc: Refers to an enemy similar to eg. 'b.hp' in Damage Formulas.    #
#        Usage: #b =[TAB]=> $game_troop.members => $game_troop.members[3].hp   #
#                                                                              #
# REMEMBER: You can use negative numbers to subtract values / remove items     #
#                                                                              #
#                     - More to come in future updates -                       #
#==============================================================================# 

 


end
 
sAP5wYN.gif
def create_screenshots
  @gifs = []
#Some gifs showing this script in action:
@gifs[0] = Testing stuff on fresh project

 

KpQLo8w.gif


@gifs[1] = 'HOOK' Command!

 

Y6Iky0N.gif


@gifs[2] = Testing commands, console window display handling and Security system, that prevented from crash due to either unexpected ']' or not closed '[ ]' ~
@gifs[3] = Testing commands ~ Uses version under development
@gifs[4] = Toying with menu ~ Uses version under development
end

hDKZwJa.gif
def terms_of_use
-=> You ARE allowed to use this script in non-commercial projects.
-=> You ARE NOT allowed to use this script in commercial projects.
-=> You ARE allowed to edit this script to your needs.
-=> You ARE NOT allowed to repost or post modified versions of this script!!!
-=> You ARE DEFINITELY NOT allowed to claim this script as your own.
-=> Crediting me, Rikifive would be heavily appreciated.
-=> You ARE obligated to read and follow the terms of use of
         CP Keyboard Input script created by Neon Black as well
 
While I won't kill anybody for breaking these rules, it still would be
a violation of personal rights, that shouldn't happen.
By using this script you accept these terms of use.
Not reading them DOES NOT exempt you from liability.
end
 
iOyXLPo.gif
def put_download_link
download_link = RK5 Debug Console V.1.2 by Rikifive.txt+5
required_script = CP Keyboard Input script v1.0a by Neon Black
 
#CHANGELOG

 

 


#==============================================================================#
# UPDATES                                                                      #
# -------                                                                      #
# [■] 29.04.2016 | Version 1.2                                                 #
#   └► added 'Give' command                                                    #
#   └► added 'Give All' command                                                #
#   └► added 'Lose All' command                                                #
#   └► added 'Spawn Gold' command                                              #
#   └► added 'Noclip' command                                                  #
#   └► improved help window - it displays information more clearly             #
#                                                                              #
# [■] 27.04.2016 | Version 1.1                                                 #
#   └► added 'Hook' function                                                   #
#   └► incorrect codes don't crash the game anymore                            #
#   |  (Thanks to BLACK WYVERN for help with this)                   #
#   └► all sounds can be configured or disabled                                #
#   └► 'optimized' script code a little to make it shorter and more effective  #
#                                                                              #
# [■] 25.04.2016 | Version 1                                                   #
#   └► initial release                                                         #
#==============================================================================# 

 

 


end


Viewing all articles
Browse latest Browse all 416

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>