Day.png);">
Apprendre


Vous êtes
nouveau sur
Oniromancie?

Visite guidée
du site


Découvrir
RPG Maker

RM 95
RM 2000/2003
RM XP
RM VX/VX Ace
RM MV/MZ

Apprendre
RPG Maker

Tutoriels
Guides
Making-of

Dans le
Forum

Section Entraide

Tutos: Checklist de la composition (...) / Sorties: Dread Mac Farlane - episode 8 / Sorties: Dread Mac Farlane - episode 7 / Jeux: Ce qui vit Dessous / News: Quoi de neuf sur Oniromancie (...) / Chat

Bienvenue
visiteur !




publicité RPG Maker!

Statistiques

Liste des
membres


Contact

Mentions légales

394 connectés actuellement

29379147 visiteurs
depuis l'ouverture

8514 visiteurs
aujourd'hui



Barre de séparation

Partenaires

Indiexpo

Akademiya RPG Maker

Blog Alioune Fall

Fairy Tail Constellations

Hellsoft

Eclipso

Offgame

Tous nos partenaires

Devenir
partenaire



Scene_Credit

Permet d'afficher a l'écran titre une liste de crédits ou autre.

Script pour RPG Maker XP
Ecrit par Matkilsa (site de l'auteur)
Publié par matkilsa (lui envoyer un message privé)
Signaler un script cassé

❤ 0

Auteur : Matkilsa & Mimiman
Logiciel : RPG Maker XP
Nombre de scripts : 1

Ce script permet de faire un système de crédit pour votre jeu. Avant tout téléchargez les ressources puis mettez les dans le dossier "Pictures" de votre jeu et après pour modifier allez dans le script tout est commenté. Pour toute aide contactez moi via mon site web.

Installation
Crée un nouveau script au dessus de Main et appeler le "Scene_Credit" et collez y ce code.
Il vous faudra des images : http://studio-matkilsa.com/ressources/ressourcescript/Pictures.rar

Portion de code : Tout sélectionner

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
#============================================
# ¦ Scene_Credit
#------------------------------------------------------------------------------
#Script permettant d'avoir une fenetre de crédit 
#crée par www.studio-matkilsa.com 
#Remerciements a Mimiman pour l'aide qu'il ma apportée sur l'apparition des facesets
#Version 1
#Pour toute aide sur ce script contactez moi sur le forum (www.studio-matkilsa.com)
#==============================================================================
 
 
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 = "Nouvelle partie"
    s2 = "Charger une partie"
    s3 = "Quitter"
    s4 = "Crédit"
    @command_window = Window_Command.new(192, [s1, s2, s3, s4])
    @command_window.back_opacity = 160
    @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
         when 3  # ?????
        # ?? SE ???
        $game_system.se_play($data_system.decision_se)
        # ????????????
        $scene = Scene_Credit.new
        end
        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
 
class Scene_Credit 
def main 
  #Changez les Pseudo par le votre, le premier est un exemple pour dés que vous lancerez
  #pour la première fois le script
s1 = "Matkilsa" 
s2 = "Pseudo 2" 
s3 = "Pseudo 3" 
s4 = "Pseudo 4" 
s5 = "Pseudo 5" 
 
@command_window = Window_Command.new(200, [s1, s2, s3, s4, s5]) 
@command_window.x = 320 - @command_window.width / 2 
@command_window.y = 240 - @command_window.height / 2 
@command_window.back_opacity = 160
@image = Sprite.new 
#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at") 
@image.z = -1000 
Graphics.transition 
loop do 
Graphics.update 
Input.update 
update 
if $scene != self 
break 
end 
end 
Graphics.freeze 
@image.bitmap.clear 
@command_window.dispose 
end 
def update 
@command_window.update 
if Input.trigger?(Input::B) 
$game_system.se_play($data_system.cancel_se) 
$scene = Scene_Title.new 
return 
end 
if Input.trigger?(Input::C) 
case @command_window.index 
when 0 # ?????
 # ?? SE ???
 $game_system.se_play($data_system.decision_se)
 # ????????????
 $scene = Scene_Pseudo1.new
 when 1 
# ?????
 # ?? SE ???
 $game_system.se_play($data_system.decision_se)
 # ????????????
 $scene = Scene_Pseudo2.new
when 2 
# ?????
 # ?? SE ???
 $game_system.se_play($data_system.decision_se)
 # ????????????
 $scene = Scene_Pseudo3.new
  when 3
    # ?????
 # ?? SE ???
 $game_system.se_play($data_system.decision_se)
 # ????????????
 $scene = Scene_Pseudo4.new
    when 4
      # ?????
 # ?? SE ???
 $game_system.se_play($data_system.decision_se)
 # ????????????
 $scene = Scene_Pseudo5.new
  end 
return 
end 
end 
end 
 
#========================================================================= 
# Scene_Pseudo 
#------------------------------------------------------------------------- 
#========================================================================= 
 
class Scene_Pseudo1
def main 
  #Remplissez selon vos envie 
s1 = "Matkilsa" 
s2 = "Webmaster" 
s3 = "19 ans" 
s4 = "webmaster@studio-matkilsa.com" 
s5 = "www.studio-matkilsa.com" 
 
@command_window = Window_Command.new(300, [s1, s2, s3, s4, s5]) 
@command_window.x = 320 - @command_window.width / 2 
@command_window.y = 240 - @command_window.height / 2 
@image = Sprite.new 
#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at") 
@image.z = -1000 
@image2 = Sprite.new
#Remplacez "essai" par le faceset qui apparaitra pour le pseudo choisit , elle doit
# se trouver dans le dossier "Pictures" de votre jeu et faire 96*/96* ( du moins c'est mieux )
@image2.bitmap = Bitmap.new("Graphics/Pictures/essai")
@image2.x = 360
@image2.y = 160
@image2.z = 1000 
Graphics.transition 
loop do 
Graphics.update 
Input.update 
update 
if $scene != self 
break 
end 
end 
Graphics.freeze 
@image.bitmap.clear 
@image2.bitmap.clear 
@command_window.dispose 
end 
def update 
@command_window.update 
if Input.trigger?(Input::B) 
$game_system.se_play($data_system.cancel_se) 
$scene = Scene_Credit.new 
return 
end 
if Input.trigger?(Input::C) 
case @command_window.index 
 
when 0
  when 1
    when 2
      when 3
        when 4
  end 
return 
end 
end 
end 
 
class Scene_Pseudo2
def main 
  #Remplissez selon vos envie 
s1 = "Pseudo" 
s2 = "Rang" 
s3 = "Age" 
s4 = "Adresse E-Mail" 
s5 = "Site Web" 
 
@command_window = Window_Command.new(300, [s1, s2, s3, s4, s5]) 
@command_window.x = 320 - @command_window.width / 2 
@command_window.y = 240 - @command_window.height / 2 
@image = Sprite.new 
#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at") 
@image.z = -1000 
@image2 = Sprite.new
#Remplacez "essai" par le faceset qui apparaitra pour le pseudo choisit , elle doit
# se trouver dans le dossier "Pictures" de votre jeu et faire 96*/96* ( du moins c'est mieux )
@image2.bitmap = Bitmap.new("Graphics/Pictures/essai")
@image2.x = 360
@image2.y = 160
@image2.z = 1000 
Graphics.transition 
loop do 
Graphics.update 
Input.update 
update 
if $scene != self 
break 
end 
end 
Graphics.freeze 
@image.bitmap.clear 
@image2.bitmap.clear 
@command_window.dispose 
end 
def update 
@command_window.update 
if Input.trigger?(Input::B) 
$game_system.se_play($data_system.cancel_se) 
$scene = Scene_Credit.new 
return 
end 
if Input.trigger?(Input::C) 
case @command_window.index 
 
  when 0
  when 1
    when 2
      when 3
        when 4
 
  end 
return 
end 
end 
end 
 
class Scene_Pseudo3
def main 
  #Remplissez selon vos envie 
s1 = "Pseudo" 
s2 = "Rang" 
s3 = "Age" 
s4 = "Adresse E-Mail" 
s5 = "Site Web" 
 
@command_window = Window_Command.new(300, [s1, s2, s3, s4, s5]) 
@command_window.x = 320 - @command_window.width / 2 
@command_window.y = 240 - @command_window.height / 2 
@image = Sprite.new 
#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at") 
@image.z = -1000 
@image2 = Sprite.new
#Remplacez "essai" par le faceset qui apparaitra pour le pseudo choisit , elle doit
# se trouver dans le dossier "Pictures" de votre jeu et faire 96*/96* ( du moins c'est mieux )
@image2.bitmap = Bitmap.new("Graphics/Pictures/essai")
@image2.x = 360
@image2.y = 160
@image2.z = 1000 
Graphics.transition 
loop do 
Graphics.update 
Input.update 
update 
if $scene != self 
break 
end 
end 
Graphics.freeze 
@image.bitmap.clear 
@image2.bitmap.clear 
@command_window.dispose 
end 
def update 
@command_window.update 
if Input.trigger?(Input::B) 
$game_system.se_play($data_system.cancel_se) 
$scene = Scene_Credit.new 
return 
end 
if Input.trigger?(Input::C) 
case @command_window.index 
 
  when 0
  when 1
    when 2
      when 3
        when 4
 
  end 
return 
end 
end 
end 
 
class Scene_Pseudo4
def main 
  #Remplissez selon vos envie 
s1 = "Pseudo" 
s2 = "Rang" 
s3 = "Age" 
s4 = "Adresse E-Mail" 
s5 = "Site Web" 
 
@command_window = Window_Command.new(300, [s1, s2, s3, s4, s5]) 
@command_window.x = 320 - @command_window.width / 2 
@command_window.y = 240 - @command_window.height / 2 
@image = Sprite.new 
#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at") 
@image.z = -1000 
@image2 = Sprite.new
#Remplacez "essai" par le faceset qui apparaitra pour le pseudo choisit , elle doit
# se trouver dans le dossier "Pictures" de votre jeu et faire 96*/96* ( du moins c'est mieux )
@image2.bitmap = Bitmap.new("Graphics/Pictures/essai")
@image2.x = 360
@image2.y = 160
@image2.z = 1000 
Graphics.transition 
loop do 
Graphics.update 
Input.update 
update 
if $scene != self 
break 
end 
end 
Graphics.freeze 
@image.bitmap.clear 
@image2.bitmap.clear 
@command_window.dispose 
end 
def update 
@command_window.update 
if Input.trigger?(Input::B) 
$game_system.se_play($data_system.cancel_se) 
$scene = Scene_Credit.new 
return 
end 
if Input.trigger?(Input::C) 
case @command_window.index 
  
when 0
  when 1
    when 2
      when 3
        when 4
 
  end 
return 
end 
end 
end 
 
class Scene_Pseudo5
def main 
  #Remplissez selon vos envie 
s1 = "Pseudo" 
s2 = "Rang" 
s3 = "Age" 
s4 = "Adresse E-Mail" 
s5 = "Site Web" 
 
@command_window = Window_Command.new(300, [s1, s2, s3, s4, s5]) 
@command_window.x = 320 - @command_window.width / 2 
@command_window.y = 240 - @command_window.height / 2 
@image = Sprite.new 
#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at") 
@image.z = -1000 
@image2 = Sprite.new
#Remplacez "essai" par le faceset qui apparaitra pour le pseudo choisit , elle doit
# se trouver dans le dossier "Pictures" de votre jeu et faire 96*/96* ( du moins c'est mieux )
@image2.bitmap = Bitmap.new("Graphics/Pictures/essai")
@image2.x = 360
@image2.y = 160
@image2.z = 1000 
Graphics.transition 
loop do 
Graphics.update 
Input.update 
update 
if $scene != self 
break 
end 
end 
Graphics.freeze 
@image.bitmap.clear 
@image2.bitmap.clear 
@command_window.dispose 
end 
def update 
@command_window.update 
if Input.trigger?(Input::B) 
$game_system.se_play($data_system.cancel_se) 
$scene = Scene_Credit.new 
return 
end 
if Input.trigger?(Input::C) 
case @command_window.index 
  
when 0
  when 1
    when 2
      when 3
        when 4
 
  end 
return 
end 
end 
end




Mis à jour le 22 novembre 2020.






Higinia-Maker - posté le 11/08/2008 à 05:37:32 (8 messages postés)

❤ 0

Y'a meme pas la moitié d'une ligne a changer XD

franchement tout le monde pe le faire :bob:bob

fais le toi meme sinn tu va te faire :feu:feu:feu:feu la *****


darkremirpg - posté le 28/11/2009 à 20:35:39 (29 messages postés)

❤ 0

comment changer musique j'arrive pas


chaipokoi - posté le 23/08/2010 à 19:10:36 (271 messages postés)

❤ 0

snif les ressources ne sont plus valides....


Peter55382 - posté le 26/10/2010 à 18:27:38 (32 messages postés)

❤ 0

Apprenti maker

Ressources --> Lien mort

Le savoir, c'est le pouvoir, chers makeurs, souvenez-vous en...


matkilsa - posté le 13/01/2011 à 15:33:30 (16 messages postés)

❤ 0

J'ai commenté le code donc bon même si les ressources ne sont plus disponible il suffit de lire dans le script

#Remplacez "back0at" par l'image de fond qui servira pour les crédit , elle doit se trouver dans
#le dossier "Pictures" de votre jeu
@image.bitmap = Bitmap.new("Graphics/Pictures/back0at")


#Remplacez "essai" par le faceset qui apparaitra pour le pseudo choisit , elle doit
# se trouver dans le dossier "Pictures" de votre jeu et faire 96*/96* ( du moins c'est mieux )
@image2.bitmap = Bitmap.new("Graphics/Pictures/essai")

En cherchant vite fait je trouve direct la solution. Donc si vous voulez le testez crée deux image une pour le fond et une pour le faceset.

Après pour les modifications il faut automatiquement toucher une peu au script, les scenes modifiables se trouvent toutes vers la fin du script et sont commenté

Suite à de nombreux abus, le post en invités a été désactivé. Veuillez vous inscrire si vous souhaitez participer à la conversation.

Haut de page

Merci de ne pas reproduire le contenu de ce site sans autorisation.
Contacter l'équipe - Mentions légales

Plan du site

Communauté: Accueil | Forum | Chat | Commentaires | News | Flash-news | Screen de la semaine | Sorties | Tests | Gaming-Live | Interviews | Galerie | OST | Blogs | Recherche
Apprendre: Visite guidée | RPG Maker 95 | RPG Maker 2003 | RPG Maker XP | RPG Maker VX | RPG Maker MV | Tutoriels | Guides | Making-of
Télécharger: Programmes | Scripts/Plugins | Ressources graphiques / sonores | Packs de ressources | Midis | Eléments séparés | Sprites
Jeux: Au hasard | Notre sélection | Sélection des membres | Tous les jeux | Jeux complets | Le cimetière | RPG Maker 95 | RPG Maker 2000 | RPG Maker 2003 | RPG Maker XP | RPG Maker VX | RPG Maker VX Ace | RPG Maker MV | Autres | Proposer
Ressources RPG Maker 2000/2003: Chipsets | Charsets | Panoramas | Backdrops | Facesets | Battle anims | Battle charsets | Monstres | Systems | Templates
Ressources RPG Maker XP: Tilesets | Autotiles | Characters | Battlers | Window skins | Icônes | Transitions | Fogs | Templates
Ressources RPG Maker VX: Tilesets | Charsets | Facesets | Systèmes
Ressources RPG Maker MV: Tilesets | Characters | Faces | Systèmes | Title | Battlebacks | Animations | SV/Ennemis
Archives: Palmarès | L'Annuaire | Livre d'or | Le Wiki | Divers