| Dr.g-The Legende of Zelda The oracle of the world. | |
|
Aller à la page : 1, 2, 3  |
| Auteur | Message |
|---|
Dr.g Mojo

Inscrit le : 20 Mai 2008 Messages : 50 Votre Zelda préféré ? : A link to the past Papiers d'identité PEAs:
   (2/200) POs:
   (0/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Mer 21 Mai - 19:06 | |
| Alors Requinzelda pour tout ces conseille tu ma vraiment aidé sans te mentire ! et pour les faute d'hortografhe vu que je suis vraiment mais vraiment pas doué j'ai trouver un scripte permétten de me les corrigé automatiquement je le testeré et si il est bien je le ferais partager a tout le monde. voila et encore merci !  _________________


recup ^^: http://www.ville-amboise.fr/descriptionStructure.php?id=240&domaine=3&famille=70&theme=148&activite= |
|
 | |
alan52 Soldat Goron


 Age : 17 Inscrit le : 15 Mar 2008 Messages : 251 Localisation : chez moi Jeux préférés : les zelda et autres RPG Niveau RPG : plutot bon en event Votre Zelda préféré ? : MM Papiers d'identité PEAs:
   (0/200) POs:
   (1/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Mer 21 Mai - 21:42 | |
| ca a l'air sympa (bien que je préfere l'écran "a coeurs" mais bon, je peux m'en passer) bonne continuation (qu'on me demande pas de développer mon message, merci!) _________________ Link doit vraiment aimer zelda pour la sauver a chaque fois... moi je l'aurait laissé se débrouiler depuis TWW! ___________________________________________________

 |
|
 | |
Dr.g Mojo

Inscrit le : 20 Mai 2008 Messages : 50 Votre Zelda préféré ? : A link to the past Papiers d'identité PEAs:
   (2/200) POs:
   (0/200) Observations:
   (0/10)
| |
 | |
dark sword magic Archer Gérudo


 Age : 14 Inscrit le : 19 Aoû 2007 Messages : 430 Localisation : A la frontière entre Morrowind et Cyroddil. (passe mes vacances en Oblivion) Jeux préférés : Zelda twilight princess, Kingdom hearts, Fifa 07 etc... Niveau RPG : en progres, surtout en maping exterieur Votre Zelda préféré ? : oot Papiers d'identité PEAs:
   (5/200) POs:
   (4/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Jeu 22 Mai - 12:53 | |
| alors, alan52, pourrait tu dévelloper ton message silteplait??^^ non je déconne, tu as donné ton avis cette fois et tu ne t'es pas contenté de dire:
"Sympa, continue"
mais je suis comme toi, je prefère les coeurs, ca fait plus Zelda.
Tiens Dr.g, c'est le script scene title modifiés, afin de mieux voir l'écran titre. Que le cadre ne bouffe pas le titre
| Spoiler: | | | #============================================================================== # ■ Scene_Title #------------------------------------------------------------------------------ # タイトル画面の処理を行うクラスです。 #==============================================================================
class Scene_Title #-------------------------------------------------------------------------- # ● メイン処理 #-------------------------------------------------------------------------- def main # 戦闘テストの場合 if $BTEST battle_test return end # データベースをロード $data_actors = load_data("Data/Actors.rxdata") $data_classes = load_data("Data/Classes.rxdata") $data_skills = load_data("Data/Skills.rxdata") $data_items = load_data("Data/Items.rxdata") $data_weapons = load_data("Data/Weapons.rxdata") $data_armors = load_data("Data/Armors.rxdata") $data_enemies = load_data("Data/Enemies.rxdata") $data_troops = load_data("Data/Troops.rxdata") $data_states = load_data("Data/States.rxdata") $data_animations = load_data("Data/Animations.rxdata") $data_tilesets = load_data("Data/Tilesets.rxdata") $data_common_events = load_data("Data/CommonEvents.rxdata") $data_system = load_data("Data/System.rxdata") # システムオブジェクトを作成 $game_system = Game_System.new # タイトルグラフィックを作成 @sprite = Sprite.new @sprite.bitmap = RPG::Cache.title($data_system.title_name) # コマンドウィンドウを作成 s1 = "Débuter l'aventure" s2 = "Charger une partie" s3 = "Quitter le jeux" @command_window = Window_Command.new(192, [s1, s2, s3,]) @command_window.back_opacity = 0 @command_window.x = 320 - @command_window.width / 2 @command_window.y = 288 # コンティニュー有効判定 # セーブファイルがひとつでも存在するかどうかを調べる # 有効なら @continue_enabled を true、無効なら false にする @continue_enabled = false for i in 0..3 if FileTest.exist?("Save#{i+1}.rxdata") @continue_enabled = true end end # コンティニューが有効な場合、カーソルをコンティニューに合わせる # 無効な場合、コンティニューの文字をグレー表示にする if @continue_enabled @command_window.index = 1 else @command_window.disable_item(1) end # タイトル BGM を演奏 $game_system.bgm_play($data_system.title_bgm) # ME、BGS の演奏を停止 Audio.me_stop Audio.bgs_stop # トランジション実行 Graphics.transition # メインループ loop do # ゲーム画面を更新 Graphics.update # 入力情報を更新 Input.update # フレーム更新 update # 画面が切り替わったらループを中断 if $scene != self break end end # トランジション準備 Graphics.freeze # コマンドウィンドウを解放 @command_window.dispose # タイトルグラフィックを解放 @sprite.bitmap.dispose @sprite.dispose end #-------------------------------------------------------------------------- # ● フレーム更新 #-------------------------------------------------------------------------- def update # コマンドウィンドウを更新 @command_window.update # C ボタンが押された場合 if Input.trigger?(Input::C) # コマンドウィンドウのカーソル位置で分岐 case @command_window.index when 0 # ニューゲーム command_new_game when 1 # コンティニュー command_continue when 2 # シャットダウン command_shutdown end end end #-------------------------------------------------------------------------- # ● コマンド : ニューゲーム #-------------------------------------------------------------------------- def command_new_game # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # BGM を停止 Audio.bgm_stop # プレイ時間計測用のフレームカウントをリセット Graphics.frame_count = 0 # 各種ゲームオブジェクトを作成 $game_temp = Game_Temp.new $game_system = Game_System.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_screen = Game_Screen.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new # 初期パーティをセットアップ $game_party.setup_starting_members # 初期位置のマップをセットアップ $game_map.setup($data_system.start_map_id) # プレイヤーを初期位置に移動 $game_player.moveto($data_system.start_x, $data_system.start_y) # プレイヤーをリフレッシュ $game_player.refresh # マップに設定されている BGM と BGS の自動切り替えを実行 $game_map.autoplay # マップを更新 (並列イベント実行) $game_map.update # マップ画面に切り替え $scene = Scene_Map.new end #-------------------------------------------------------------------------- # ● コマンド : コンティニュー #-------------------------------------------------------------------------- def command_continue # コンティニューが無効の場合 unless @continue_enabled # ブザー SE を演奏 $game_system.se_play($data_system.buzzer_se) return end # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # ロード画面に切り替え $scene = Scene_Load.new end #-------------------------------------------------------------------------- # ● コマンド : シャットダウン #-------------------------------------------------------------------------- def command_shutdown # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # BGM、BGS、ME をフェードアウト Audio.bgm_fade(800) Audio.bgs_fade(800) Audio.me_fade(800) # シャットダウン $scene = nil end #-------------------------------------------------------------------------- # ● 戦闘テスト #-------------------------------------------------------------------------- def battle_test # データベース (戦闘テスト用) をロード $data_actors = load_data("Data/BT_Actors.rxdata") $data_classes = load_data("Data/BT_Classes.rxdata") $data_skills = load_data("Data/BT_Skills.rxdata") $data_items = load_data("Data/BT_Items.rxdata") $data_weapons = load_data("Data/BT_Weapons.rxdata") $data_armors = load_data("Data/BT_Armors.rxdata") $data_enemies = load_data("Data/BT_Enemies.rxdata") $data_troops = load_data("Data/BT_Troops.rxdata") $data_states = load_data("Data/BT_States.rxdata") $data_animations = load_data("Data/BT_Animations.rxdata") $data_tilesets = load_data("Data/BT_Tilesets.rxdata") $data_common_events = load_data("Data/BT_CommonEvents.rxdata") $data_system = load_data("Data/BT_System.rxdata") # プレイ時間計測用のフレームカウントをリセット Graphics.frame_count = 0 # 各種ゲームオブジェクトを作成 $game_temp = Game_Temp.new $game_system = Game_System.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_screen = Game_Screen.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new # 戦闘テスト用のパーティをセットアップ $game_party.setup_battle_test_members # トループ ID、逃走可能フラグ、バトルバックを設定 $game_temp.battle_troop_id = $data_system.test_troop_id $game_temp.battle_can_escape = true $game_map.battleback_name = $data_system.battleback_name # バトル開始 SE を演奏 $game_system.se_play($data_system.battle_start_se) # バトル BGM を演奏 $game_system.bgm_play($game_system.battle_bgm) # バトル画面に切り替え $scene = Scene_Battle.new end end |
_________________ Projet rpg: little quest 2: 2% Projet rpg: Yoshi human world: 15% ~~~~~~~~~~~~~~~~~~~~~~~~~~ Le monde du fantastique: http://darkswordmagic.oldiblog.com
Dernière édition par dark sword magic le Jeu 22 Mai - 17:31, édité 1 fois |
|
 | |
alan52 Soldat Goron


 Age : 17 Inscrit le : 15 Mar 2008 Messages : 251 Localisation : chez moi Jeux préférés : les zelda et autres RPG Niveau RPG : plutot bon en event Votre Zelda préféré ? : MM Papiers d'identité PEAs:
   (0/200) POs:
   (1/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Jeu 22 Mai - 13:40 | |
| heu... il y a rien dans le spoilier dark sword magic... EDIT: Dr.g, tu peux me passer le script pour le systeme de combatA-RPG? aparament c'est une version plus récente que celle que j'ai posté sur le forum (donc j'ai l'intention de le publier alors si tu me le passe, c'est que t'es d'accord, sinon, me le passe pas!) _________________ Link doit vraiment aimer zelda pour la sauver a chaque fois... moi je l'aurait laissé se débrouiler depuis TWW! ___________________________________________________

 |
|
 | |
dark sword magic Archer Gérudo


 Age : 14 Inscrit le : 19 Aoû 2007 Messages : 430 Localisation : A la frontière entre Morrowind et Cyroddil. (passe mes vacances en Oblivion) Jeux préférés : Zelda twilight princess, Kingdom hearts, Fifa 07 etc... Niveau RPG : en progres, surtout en maping exterieur Votre Zelda préféré ? : oot Papiers d'identité PEAs:
   (5/200) POs:
   (4/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Jeu 22 Mai - 17:30 | |
| heu, si il y a quelque chose dans le spoiler, moi je le vois très bien, mais si tu veux, je le re-poste:
| Spoiler: | | | #============================================================================== # ■ Scene_Title #------------------------------------------------------------------------------ # タイトル画面の処理を行うクラスです。 #==============================================================================
class Scene_Title #-------------------------------------------------------------------------- # ● メイン処理 #-------------------------------------------------------------------------- def main # 戦闘テストの場合 if $BTEST battle_test return end # データベースをロード $data_actors = load_data("Data/Actors.rxdata") $data_classes = load_data("Data/Classes.rxdata") $data_skills = load_data("Data/Skills.rxdata") $data_items = load_data("Data/Items.rxdata") $data_weapons = load_data("Data/Weapons.rxdata") $data_armors = load_data("Data/Armors.rxdata") $data_enemies = load_data("Data/Enemies.rxdata") $data_troops = load_data("Data/Troops.rxdata") $data_states = load_data("Data/States.rxdata") $data_animations = load_data("Data/Animations.rxdata") $data_tilesets = load_data("Data/Tilesets.rxdata") $data_common_events = load_data("Data/CommonEvents.rxdata") $data_system = load_data("Data/System.rxdata") # システムオブジェクトを作成 $game_system = Game_System.new # タイトルグラフィックを作成 @sprite = Sprite.new @sprite.bitmap = RPG::Cache.title($data_system.title_name) # コマンドウィンドウを作成 s1 = "Débuter l'aventure" s2 = "Charger une partie" s3 = "Quitter le jeux" @command_window = Window_Command.new(192, [s1, s2, s3,]) @command_window.back_opacity = 0 @command_window.x = 320 - @command_window.width / 2 @command_window.y = 288 # コンティニュー有効判定 # セーブファイルがひとつでも存在するかどうかを調べる # 有効なら @continue_enabled を true、無効なら false にする @continue_enabled = false for i in 0..3 if FileTest.exist?("Save#{i+1}.rxdata") @continue_enabled = true end end # コンティニューが有効な場合、カーソルをコンティニューに合わせる # 無効な場合、コンティニューの文字をグレー表示にする if @continue_enabled @command_window.index = 1 else @command_window.disable_item(1) end # タイトル BGM を演奏 $game_system.bgm_play($data_system.title_bgm) # ME、BGS の演奏を停止 Audio.me_stop Audio.bgs_stop # トランジション実行 Graphics.transition # メインループ loop do # ゲーム画面を更新 Graphics.update # 入力情報を更新 Input.update # フレーム更新 update # 画面が切り替わったらループを中断 if $scene != self break end end # トランジション準備 Graphics.freeze # コマンドウィンドウを解放 @command_window.dispose # タイトルグラフィックを解放 @sprite.bitmap.dispose @sprite.dispose end #-------------------------------------------------------------------------- # ● フレーム更新 #-------------------------------------------------------------------------- def update # コマンドウィンドウを更新 @command_window.update # C ボタンが押された場合 if Input.trigger?(Input::C) # コマンドウィンドウのカーソル位置で分岐 case @command_window.index when 0 # ニューゲーム command_new_game when 1 # コンティニュー command_continue when 2 # シャットダウン command_shutdown end end end #-------------------------------------------------------------------------- # ● コマンド : ニューゲーム #-------------------------------------------------------------------------- def command_new_game # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # BGM を停止 Audio.bgm_stop # プレイ時間計測用のフレームカウントをリセット Graphics.frame_count = 0 # 各種ゲームオブジェクトを作成 $game_temp = Game_Temp.new $game_system = Game_System.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_screen = Game_Screen.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new # 初期パーティをセットアップ $game_party.setup_starting_members # 初期位置のマップをセットアップ $game_map.setup($data_system.start_map_id) # プレイヤーを初期位置に移動 $game_player.moveto($data_system.start_x, $data_system.start_y) # プレイヤーをリフレッシュ $game_player.refresh # マップに設定されている BGM と BGS の自動切り替えを実行 $game_map.autoplay # マップを更新 (並列イベント実行) $game_map.update # マップ画面に切り替え $scene = Scene_Map.new end #-------------------------------------------------------------------------- # ● コマンド : コンティニュー #-------------------------------------------------------------------------- def command_continue # コンティニューが無効の場合 unless @continue_enabled # ブザー SE を演奏 $game_system.se_play($data_system.buzzer_se) return end # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # ロード画面に切り替え $scene = Scene_Load.new end #-------------------------------------------------------------------------- # ● コマンド : シャットダウン #-------------------------------------------------------------------------- def command_shutdown # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # BGM、BGS、ME をフェードアウト Audio.bgm_fade(800) Audio.bgs_fade(800) Audio.me_fade(800) # シャットダウン $scene = nil end #-------------------------------------------------------------------------- # ● 戦闘テスト #-------------------------------------------------------------------------- def battle_test # データベース (戦闘テスト用) をロード $data_actors = load_data("Data/BT_Actors.rxdata") $data_classes = load_data("Data/BT_Classes.rxdata") $data_skills = load_data("Data/BT_Skills.rxdata") $data_items = load_data("Data/BT_Items.rxdata") $data_weapons = load_data("Data/BT_Weapons.rxdata") $data_armors = load_data("Data/BT_Armors.rxdata") $data_enemies = load_data("Data/BT_Enemies.rxdata") $data_troops = load_data("Data/BT_Troops.rxdata") $data_states = load_data("Data/BT_States.rxdata") $data_animations = load_data("Data/BT_Animations.rxdata") $data_tilesets = load_data("Data/BT_Tilesets.rxdata") $data_common_events = load_data("Data/BT_CommonEvents.rxdata") $data_system = load_data("Data/BT_System.rxdata") # プレイ時間計測用のフレームカウントをリセット Graphics.frame_count = 0 # 各種ゲームオブジェクトを作成 $game_temp = Game_Temp.new $game_system = Game_System.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_screen = Game_Screen.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new # 戦闘テスト用のパーティをセットアップ $game_party.setup_battle_test_members # トループ ID、逃走可能フラグ、バトルバックを設定 $game_temp.battle_troop_id = $data_system.test_troop_id $game_temp.battle_can_escape = true $game_map.battleback_name = $data_system.battleback_name # バトル開始 SE を演奏 $game_system.se_play($data_system.battle_start_se) # バトル BGM を演奏 $game_system.bgm_play($game_system.battle_bgm) # バトル画面に切り替え $scene = Scene_Battle.new end |
end _________________ Projet rpg: little quest 2: 2% Projet rpg: Yoshi human world: 15% ~~~~~~~~~~~~~~~~~~~~~~~~~~ Le monde du fantastique: http://darkswordmagic.oldiblog.com |
|
 | |
alan52 Soldat Goron


 Age : 17 Inscrit le : 15 Mar 2008 Messages : 251 Localisation : chez moi Jeux préférés : les zelda et autres RPG Niveau RPG : plutot bon en event Votre Zelda préféré ? : MM Papiers d'identité PEAs:
   (0/200) POs:
   (1/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Jeu 22 Mai - 17:46 | |
| ben, vla autre chose... maintenant le spolier du 1er post marche! je deviens dingue moi! _________________ Link doit vraiment aimer zelda pour la sauver a chaque fois... moi je l'aurait laissé se débrouiler depuis TWW! ___________________________________________________

 |
|
 | |
Dr.g Mojo

Inscrit le : 20 Mai 2008 Messages : 50 Votre Zelda préféré ? : A link to the past Papiers d'identité PEAs:
   (2/200) POs:
   (0/200) Observations:
   (0/10)
| |
 | |
Dr.g Mojo

Inscrit le : 20 Mai 2008 Messages : 50 Votre Zelda préféré ? : A link to the past Papiers d'identité PEAs:
   (2/200) POs:
   (0/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Mar 27 Mai - 23:11 | |
| Voici une petite new : La démo est enfin prète mais j'ai besoin d'une personne qui accepteré d'enlever toute les faute . -Alors le système de pèche a été crée mais il me reste un probleme trouver un charc de Link qui pèche ? (a voir)
-Ensuite pour le systeme de combat ses fini le vieu combat ou l'on voit juste l'animation épée ! Maintenan on voit Link donné en vrai coup d'épée.
Scrennshot:

-J'ai aussi modifier les map, elle son plus remplit :
scrennshot:

Et voila c'est tous pour le moment ^^ toute les modification des pourcentages du jeu (map: 7% ect..) son éditer sur la 1er page  _________________


recup ^^: http://www.ville-amboise.fr/descriptionStructure.php?id=240&domaine=3&famille=70&theme=148&activite=
Dernière édition par Dr.g le Mar 27 Mai - 23:37, édité 1 fois |
|
 | |
Dr.g Mojo

Inscrit le : 20 Mai 2008 Messages : 50 Votre Zelda préféré ? : A link to the past Papiers d'identité PEAs:
   (2/200) POs:
   (0/200) Observations:
   (0/10)
| Sujet: Re: Dr.g-The Legende of Zelda The oracle of the world. Mar 27 Mai - 23:33 | |
| | dark sword magic a écrit: | alors, alan52, pourrait tu dévelloper ton message silteplait??^^ non je déconne, tu as donné ton avis cette fois et tu ne t'es pas contenté de dire:
"Sympa, continue"
mais je suis comme toi, je prefère les coeurs, ca fait plus Zelda.
Tiens Dr.g, c'est le script scene title modifiés, afin de mieux voir l'écran titre. Que le cadre ne bouffe pas le titre
| Spoiler: | | | #============================================================================== # ■ Scene_Title #------------------------------------------------------------------------------ # タイトル画面の処理を行うクラスです。 #==============================================================================
class Scene_Title #-------------------------------------------------------------------------- # ● メイン処理 #-------------------------------------------------------------------------- def main # 戦闘テストの場合 if $BTEST battle_test return end # データベースをロード $data_actors = load_data("Data/Actors.rxdata") $data_classes = load_data("Data/Classes.rxdata") $data_skills = load_data("Data/Skills.rxdata") $data_items = load_data("Data/Items.rxdata") $data_weapons = load_data("Data/Weapons.rxdata") $data_armors = load_data("Data/Armors.rxdata") $data_enemies = load_data("Data/Enemies.rxdata") $data_troops = load_data("Data/Troops.rxdata") $data_states = load_data("Data/States.rxdata") $data_animations = load_data("Data/Animations.rxdata") $data_tilesets = load_data("Data/Tilesets.rxdata") $data_common_events = load_data("Data/CommonEvents.rxdata") $data_system = load_data("Data/System.rxdata") # システムオブジェクトを作成 $game_system = Game_System.new # タイトルグラフィックを作成 @sprite = Sprite.new @sprite.bitmap = RPG::Cache.title($data_system.title_name) # コマンドウィンドウを作成 s1 = "Débuter l'aventure" s2 = "Charger une partie" s3 = "Quitter le jeux" @command_window = Window_Command.new(192, [s1, s2, s3,]) @command_window.back_opacity = 0 @command_window.x = 320 - @command_window.width / 2 @command_window.y = 288 # コンティニュー有効判定 # セーブファイルがひとつでも存在するかどうかを調べる # 有効なら @continue_enabled を true、無効なら false にする @continue_enabled = false for i in 0..3 if FileTest.exist?("Save#{i+1}.rxdata") @continue_enabled = true end end # コンティニューが有効な場合、カーソルをコンティニューに合わせる # 無効な場合、コンティニューの文字をグレー表示にする if @continue_enabled @command_window.index = 1 else @command_window.disable_item(1) end # タイトル BGM を演奏 $game_system.bgm_play($data_system.title_bgm) # ME、BGS の演奏を停止 Audio.me_stop Audio.bgs_stop # トランジション実行 Graphics.transition # メインループ loop do # ゲーム画面を更新 Graphics.update # 入力情報を更新 Input.update # フレーム更新 update # 画面が切り替わったらループを中断 if $scene != self break end end # トランジション準備 Graphics.freeze # コマンドウィンドウを解放 @command_window.dispose # タイトルグラフィックを解放 @sprite.bitmap.dispose @sprite.dispose end #-------------------------------------------------------------------------- # ● フレーム更新 #-------------------------------------------------------------------------- def update # コマンドウィンドウを更新 @command_window.update # C ボタンが押された場合 if Input.trigger?(Input::C) # コマンドウィンドウのカーソル位置で分岐 case @command_window.index when 0 # ニューゲーム command_new_game when 1 # コンティニュー command_continue when 2 # シャットダウン command_shutdown end end end #-------------------------------------------------------------------------- # ● コマンド : ニューゲーム #-------------------------------------------------------------------------- def command_new_game # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # BGM を停止 Audio.bgm_stop # プレイ時間計測用のフレームカウントをリセット Graphics.frame_count = 0 # 各種ゲームオブジェクトを作成 $game_temp = Game_Temp.new $game_system = Game_System.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_screen = Game_Screen.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new # 初期パーティをセットアップ $game_party.setup_starting_members # 初期位置のマップをセットアップ $game_map.setup($data_system.start_map_id) # プレイヤーを初期位置に移動 $game_player.moveto($data_system.start_x, $data_system.start_y) # プレイヤーをリフレッシュ $game_player.refresh # マップに設定されている BGM と BGS の自動切り替えを実行 $game_map.autoplay # マップを更新 (並列イベント実行) $game_map.update # マップ画面に切り替え $scene = Scene_Map.new end #-------------------------------------------------------------------------- # ● コマンド : コンティニュー #-------------------------------------------------------------------------- def command_continue # コンティニューが無効の場合 unless @continue_enabled # ブザー SE を演奏 $game_system.se_play($data_system.buzzer_se) return end # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # ロード画面に切り替え $scene = Scene_Load.new end #-------------------------------------------------------------------------- # ● コマンド : シャットダウン #-------------------------------------------------------------------------- def command_shutdown # 決定 SE を演奏 $game_system.se_play($data_system.decision_se) # BGM、BGS、ME をフェードアウト Audio.bgm_fade(800) Audio.bgs_fade(800) Audio.me_fade(800) # シャットダウン $scene = nil end #-------------------------------------------------------------------------- # ● 戦闘テスト #-------------------------------------------------------------------------- def battle_test # データベース (戦闘テスト用) をロード $data_actors = load_data("Data/BT_Actors.rxdata") $data_classes = load_data("Data/BT_Classes.rxdata") $data_skills = load_data("Data/BT_Skills.rxdata") $data_items = load_data("Data/BT_Items.rxdata") $data_weapons = load_data("Data/BT_Weapons.rxdata") $data_armors = load_data("Data/BT_Armors.rxdata") $data_enemies = load_data("Data/BT_Enemies.rxdata") $data_troops = load_data("Data/BT_Troops.rxdata") $data_states = load_data("Data/BT_States.rxdata") $data_animations = load_data("Data/BT_Animations.rxdata") $data_tilesets = load_data("Data/BT_Tilesets.rxdata") $data_common_events = load_data("Data/BT_CommonEvents.rxdata") $data_system = load_data("Data/BT_System.rxdata") # プレイ時間計測用のフレームカウントをリセット Graphics.frame_count = 0 # 各種ゲームオブジェクトを作成 $game_temp = Game_Temp.new $game_system = Game_System.new $game_switches = Game_Switches.new $game_variables = Game_Variables.new $game_self_switches = Game_SelfSwitches.new $game_screen = Game_Screen.new $game_actors = Game_Actors.new $game_party = Game_Party.new $game_troop = Game_Troop.new $game_map = Game_Map.new $game_player = Game_Player.new # 戦闘テスト用のパーティをセットアップ $game_party.setup_battle_test_members # トループ ID、逃走可能フラグ、バトルバックを設定 $game_temp.battle_troop_id = $data_system.test_troop_id $game_temp.battle_can_escape = true $game_map.battleback_name = $data_system.battleback_name # バトル開始 SE を演奏 $game_system.se_play($data_system.battle_start_se) # バトル BGM を演奏 $game_system.bgm_play($game_system.battle_bgm) # バトル画面に切り替え $scene = Scene_Battle.new end end |
|
Dark sm mais ya un petit probleme l'écriture et blanche enfin bref regarde ce que sa donne:
scrennshot :
 _________________


recup ^^: http://www.ville-amboise.fr/descriptionStructure.php?id=240&domaine=3&famille=70&theme=148&activite= |
|
 | |
| Dr.g-The Legende of Zelda The oracle of the world. | |
|