Project1
标题:
急啊 好心人看看吧
[打印本页]
作者:
wodeaixier
时间:
2008-8-21 00:31
提示:
作者被禁止或删除 内容自动屏蔽
作者:
MH穷奇
时间:
2008-8-21 00:35
提示:
作者被禁止或删除 内容自动屏蔽
作者:
MH穷奇
时间:
2008-8-21 00:42
提示:
作者被禁止或删除 内容自动屏蔽
作者:
wodeaixier
时间:
2008-8-21 01:11
提示:
作者被禁止或删除 内容自动屏蔽
作者:
wodeaixier
时间:
2008-8-21 01:16
提示:
作者被禁止或删除 内容自动屏蔽
作者:
殲滅天使·玲
时间:
2008-8-21 01:31
我是新手...
连接进网页是主站找的 ...
选择进入制作人员请看下面范例工程
http://rpg.blue/upload_program/files/Project15_99681966.rar
修改了Scene_Title 类的 42 , 43 , 109 ,110 166-170行脚本 修改网站连接地址在188行修改
添家一个新的 场景类 Scene_Zuozhe 请注意复制进你的脚本
在Scene_Zuozhe 里 修改显示制作人员的图片文件名,详细请下载 [LINE]1,#dddddd[/LINE]
系统信息:本贴由本区版主认可,66RPG感谢您的热情解答~
作者:
dyx726
时间:
2008-8-21 01:38
#--------------------------------------------------------------------------
# ● 命令 : 登录66网站
#--------------------------------------------------------------------------
def command_66RPG
# 演奏确定 SE
$game_system.se_play($data_system.decision_se)
$bb_66rpg = Win32API.new('shell32.dll','ShellExecuteA',%w(p p p p p i),'i')
$bb_66rpg.call(0, 'open', 'http://rpg.blue/web/',0, 0, 1)
#↑
#网站在这里改
复制代码
已经很OK了
作者:
wodeaixier
时间:
2008-8-21 02:04
提示:
作者被禁止或删除 内容自动屏蔽
作者:
ONEWateR
时间:
2008-8-21 02:14
http://rpg.blue/web/htm/news31.htm
作者:
dyx726
时间:
2008-8-21 02:28
在Main前按Insert加入以下脚本
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================
#——————————————————————————————————————
# Scene_Credit 制作人员名单
#——————————————————————————————————————
#——使用注意:默认会返回地图,如果需要返回开头,请将本脚本中的
#return_scene = Scene_Map.new改为return_scene = Scene_Title.new
class Scene_Credit
CREDIT=<<_END_
-----Cast------
制作工具:RPG Maker XP
制作人员
制作人员
制作人员
制作人员
end
class Scene_Credit
def initialize(return_scene = nil)
if return_scene.nil?
return_scene = Scene_Title.new
end
@return_scene = return_scene
end
def scene_start
credit_lines = CREDIT.split(/\n/)
credit_bitmap = Bitmap.new(640,32 * credit_lines.size)
credit_lines.each_index do |i|
line = credit_lines[i]
credit_bitmap.draw_text(0,i * 32,640,32,line,1)
end
@credit_sprite = Sprite.new(Viewport.new(0,50,640,380))
@credit_sprite.bitmap = credit_bitmap
@credit_sprite.oy = -430
@frame_index = 0
@last_flag = false
end
def scene_end
@credit_sprite.dispose
end
def last?
return (@frame_index >= @credit_sprite.bitmap.height + 480)
end
def last
if not @last_flag
Audio.bgm_fade(10000)
@last_flag = true
@last_count = 0
else
@last_count += 1
end
if @last_count >= 300
$scene = @return_scene
end
end
def update
@frame_index += 1
return if cancel?
last if last?
@credit_sprite.oy += 1
end
def cancel?
if Input.trigger?(Input::B)
$scene = @return_scene
return true
end
return false
end
def main
scene_start
# 过渡
Graphics.transition
# 主循环
loop do
Graphics.update
Input.update
update
if $scene != self
break
end
end
# 准备过渡
Graphics.freeze
scene_end
end
end
#==============================================================================
# 本脚本来自www.66RPG.com,使用和转载请保留此信息
#==============================================================================
复制代码
#--------------------------------------------------------------------------
# ● 命令 : 制作人员
#--------------------------------------------------------------------------
def command_zhizuo
# 演奏确定 SE
$game_system.se_play($data_system.decision_se)
$scene = Scene_Credit
end
复制代码
[LINE]1,#dddddd[/LINE]
系统信息:本贴由本区版主认可为正确答案,66RPG感谢您的热情解答~
作者:
dyx726
时间:
2008-8-21 02:31
#--------------------------------------------------------------------------
# ● 刷新画面
#--------------------------------------------------------------------------
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 # 网页
command_66RPG
when 4 # 制作人员
command_zhizuo
end
end
end
复制代码
# 生成命令窗口
s1 = "新游戏"
s2 = "继续"
s3 = "退出"
s4 = "网页"
s5 = "制作人员"
@command_window = Window_Command.new(192, [s1, s2, s3, s4, s5])
复制代码
作者:
Magic
时间:
2008-8-21 03:28
LS的人都解释的这么详细了 居然还……
我有种一呼百应的感觉... BSSSD吧
作者:
wodeaixier
时间:
2008-8-21 18:39
提示:
作者被禁止或删除 内容自动屏蔽
作者:
莉可
时间:
2008-8-23 01:03
提示:
作者被禁止或删除 内容自动屏蔽
欢迎光临 Project1 (https://rpg.blue/)
Powered by Discuz! X3.1