| Script tanpa Continue kalo player belum ngesave | |
|
|
Pengirim | Message |
---|
mbahnoname Senior
Posts : 670 Thanked : 0 Engine : RMVX Skill : Very Beginner Type : Mapper
Trophies
Awards:
| Subyek: Script tanpa Continue kalo player belum ngesave 2009-09-14, 21:12 | |
| Ada gak sih Script vx yang membuat Continuenya itu ilank kalo player belom ngesave di gamenya kalo dah ngesave Continuenya baru ada Ada gak ? mbah dah nyari di RMVX.Net tapi gak ketemu bagi yang nemu tolong donk post linknya di sini | |
|
| |
hipon
katanya Member Paling Sabar
Posts : 384 Thanked : 6 Engine : RMVX
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-15, 18:28 | |
| gak ketemu karena kurang penting kali ya mbah^^ | |
|
| |
mbahnoname Senior
Posts : 670 Thanked : 0 Engine : RMVX Skill : Very Beginner Type : Mapper
Trophies
Awards:
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-15, 19:06 | |
| hahaha kayaknya emang gak penting script kayak gini cuman kan biar menambah bagus title itu juga gak bagus-bagus amat >.<, kalo yang vx mbah sempet nemu . . . tapi di mana ya ? | |
|
| |
reijubv Kai Runes
Posts : 1476 Thanked : 33 Engine : RMVX
Trophies
Awards:
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 18:17 | |
| beuh, ini sih gpg, emang mbah pake script titlescreen / biasa? | |
|
| |
fjakf
Banned by Admin
Posts : 217 Thanked : 1 Engine : Other Type : Developer
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 18:26 | |
| edit ndiri aja - Code:
-
jika belon kesave new game exit selain itu new game lanjutGAN exit end | |
|
| |
mbahnoname Senior
Posts : 670 Thanked : 0 Engine : RMVX Skill : Very Beginner Type : Mapper
Trophies
Awards:
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 21:23 | |
| doh master fjakf itu yang di code yang harus di edit kok bahasanya pk bahasa indo ? script ato bukan seh ? gak ngartos mbah editnya kasih tutor dunk | |
|
| |
agung Advance
Posts : 384 Thanked : 4 Engine : RMVX Skill : Intermediate Type : Artist
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 21:36 | |
| Iya bener2, nie script serius apa becanda seh? | |
|
| |
hipon
katanya Member Paling Sabar
Posts : 384 Thanked : 6 Engine : RMVX
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 21:43 | |
| *huffff*
itu namanya algoritma. sebut aja logikanya deh. hal diatas tu penting banget klo kk semua baru coding. yg ditulis kk fjakf diatas kan tinggal diimplementasikan ke RGSS. coba liat di help/ googling tutorial2 tentang RGSS.jangan pengen yg instan. | |
|
| |
agung Advance
Posts : 384 Thanked : 4 Engine : RMVX Skill : Intermediate Type : Artist
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 21:49 | |
| Oh.. Gitu., kirain fjakf cuman maen2, hmm woke aku mw nyoba.. Belajar belajar dan belajar | |
|
| |
wltr3565 Senior
Posts : 870 Thanked : 28 Engine : RMVX Skill : Skilled Type : Scripter
Trophies
Awards:
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-24, 23:58 | |
| - Spoiler:
- Code:
-
=begin Make Continue Command a Goner while having no save file
From a request in some forum. I liked a little of his idea, getting rid of the continue command Let's put this script in use.
Script effect: Well, like in Gust's games, as you play at the first time, the continue command in the title is gone, till you made a save file. it copies like that (I hope).
Install: Put it below title related scripts and above main.
Terms of use: crediting me, wltr3565 or not, it's up to you though. =end
#================================================================================= # WARNING! DANGEROUS POINT! #================================================================================= class Scene_Title < Scene_Base def create_command_window s1 = Vocab::new_game s2 = Vocab::continue s3 = Vocab::shutdown if @continue_enabled @command_window = Window_Command.new(172, [s1, s2, s3]) else @command_window = Window_Command.new(172, [s1,s3]) end @command_window.x = (544 - @command_window.width) / 2 @command_window.y = 288 @command_window.openness = 0 @command_window.open end def update super @command_window.update if Input.trigger?(Input::C) if @continue_enabled case @command_window.index when 0 #New game command_new_game when 1 # Continue command_continue when 2 # Shutdown command_shutdown end else case @command_window.index when 0 #New game command_new_game when 1 # Continue command_shutdown end end end end end
Coba aja. Belom di tes lantaran males walaupun kujamin bisa. Dan ini untuk script title screen yang default. Use at your own risk. Ingetin game-gamenya Gust aja nih *lanjuting scripting* | |
|
| |
neclords Newbie
Posts : 74 Thanked : 1 Engine : RMVX Skill : Beginner Type : Mapper
| Subyek: Re: Script tanpa Continue kalo player belum ngesave 2009-09-25, 00:10 | |
| @atas : perfect gan. bisa tuh. 100% work. sipsip. | |
|
| |
Sponsored content
| Subyek: Re: Script tanpa Continue kalo player belum ngesave | |
| |
|
| |
| Script tanpa Continue kalo player belum ngesave | |
|