RMRK is retiring.
Server is paid up for the rest of 2026, but the forum may go after that. See here for more information. Please archive or save anything you would like to keep before 2027.
Main Menu
  • Welcome to The RPG Maker Resource Kit.

My GTBS system

Started by drakonz5, November 23, 2009, 10:15:58 AM

0 Members and 1 Guest are viewing this topic.

drakonz5

GubiD's Tactical Battle system


Edit: Removed because it's not YOUR GTBS system and you don't have permission for it.

dricc

"My" ???
"Cubid - helping to make the script"
Helping ??? he made this script ! and it's Gubid not Cubid .

Well ok , it wasn't on this forum . i have downloaded it , it's the 1.4 version , so the last one .
It has many known bugs . For exemple the "TEAM" option doesn't work well . Use only the ATB "active base mode" .
One more thing : after you have finished a battle , you are unable to save (a big error) .

Here is the fix for that :
in "Game_system" of the GTBS part , add this method :
# dricc : new method to reset tables at the end
    def end_battle
    @tactics_actors = []
    @tactics_enemies = []
    @tactics_neutral = []
    @tactics_dead = []
    @battle_events = {}
    @acted = []
  end
in "Scene_Battle_TBS" , search this :
def tbs_phase_8
    case @result_phase
    when 0..10
      @result_phase += 1
    when 11
      show_congrat
      @result_phase += 1
      # add Dricc : reset tables
      $game_system.end_battle
    when 12
      show_gold_gain
      @result_phase += 1
    when 13
      show_item_gain
      @result_phase += 1
    when 14
      exit_battle
    end
  end

and add the lines in bold .

It is very important to know that this script can generate a lot of incompatibility problems .
You can use my scripts freely . but not for commercial use .
:ccbync:
Don't encrypt your game !!!
Want to give me credit ? Easy ,add me in your game :

Zylos

#2




  • The read me CLEARLY states that you are not allowed to post this here without his permission.
  • As Dricc says, the name is GubiD, and he didn't help make it, he actually MADE it.
  • "Q: is this my first script? A: YES IT IS..."   ...it isn't your script though.
  • Your grammar and formatting could use some serious improvement.




Grafikal


drakonz5

ok ok! enough already i get it!!!

drakonz5

and i have PERMISSION FROM HIM!!!

drakonz5

Quote from: dricc on November 23, 2009, 01:56:30 PM
"My" ???
"Cubid - helping to make the script"
Helping ??? he made this script ! and it's Gubid not Cubid .

Well ok , it wasn't on this forum . i have downloaded it , it's the 1.4 version , so the last one .
It has many known bugs . For exemple the "TEAM" option doesn't work well . Use only the ATB "active base mode" .
One more thing : after you have finished a battle , you are unable to save (a big error) .

Here is the fix for that :
in "Game_system" of the GTBS part , add this method :
# dricc : new method to reset tables at the end
    def end_battle
    @tactics_actors = []
    @tactics_enemies = []
    @tactics_neutral = []
    @tactics_dead = []
    @battle_events = {}
    @acted = []
  end
in "Scene_Battle_TBS" , search this :
def tbs_phase_8
    case @result_phase
    when 0..10
      @result_phase += 1
    when 11
      show_congrat
      @result_phase += 1
      # add Dricc : reset tables
      $game_system.end_battle
    when 12
      show_gold_gain
      @result_phase += 1
    when 13
      show_item_gain
      @result_phase += 1
    when 14
      exit_battle
    end
  end

and add the lines in bold .

It is very important to know that this script can generate a lot of incompatibility problems .


ya i spelled it wrongly...

Zylos

And a triple post, even better than a double post. Off to a great start, bud.

Next time please combine all of your posts into one.