设为首页收藏本站|繁體中文

Project1

 找回密码
 注册会员
搜索
查看: 3308|回复: 3
打印 上一主题 下一主题

[原创发布] [Scene篇]简陋任务列表

[复制链接]

Lv5.捕梦者 (管理员)

老黄鸡

梦石
0
星屑
42344
在线时间
7599 小时
注册时间
2009-7-6
帖子
13506

开拓者贵宾

跳转到指定楼层
1
发表于 2010-12-28 13:24:56 | 只看该作者 |只看大图 回帖奖励 |正序浏览 |阅读模式

加入我们,或者,欢迎回来。

您需要 登录 才可以下载或查看,没有帐号?注册会员

x
本帖最后由 fux2 于 2010-12-29 10:24 编辑

喵,咱只是尝试写一个Scene,很渣,各位就不要吐槽了,非常简陋,范例就不发了。
感谢EngShun纠正错误喵~





于是还是比较朴实啦~
以下献给新手
1.插入下面的脚本在main以上
2.进入游戏按Z键呼出任务列表
3.变量100控制任务进度
4.脚本42行修改任务描述

喵就这样了
  1. class Scene_Fux2
  2.   
  3.    def main
  4.     @help_window = Window_Help.new
  5.     @item_window = Window_Fux2.new
  6.     @item_window.help_window = @help_window
  7.     Graphics.transition
  8.     loop do
  9.       Graphics.update
  10.       Input.update
  11.       update
  12.       if $scene != self
  13.         break
  14.       end
  15.     end
  16.     Graphics.freeze
  17.     @help_window.dispose
  18.     @item_window.dispose
  19.   end

  20.   def update
  21.     @help_window.update
  22.     @item_window.update
  23.     if @item_window.active
  24.       update_item
  25.       return
  26.     end
  27.   end

  28.   def update_item
  29.     if Input.trigger?(Input::B)
  30.       $game_system.se_play($data_system.cancel_se)
  31.       $scene = Scene_Map.new
  32.       return
  33.     end
  34.   end
  35.   
  36. end
  37. ########################################################
  38. class Window_Fux2 < Window_Selectable
  39.   
  40.   FUX_BLOCK = [["任务1","杀死所有敌人"],["任务2","喵喵"]]

  41.   def initialize
  42.     super(0, 64, 640, 416)
  43.     @column_max = 1
  44.     refresh
  45.     self.index = 0
  46.   end

  47.   def item
  48.     return @data[self.index]
  49.   end

  50.   def refresh
  51.     if self.contents != nil
  52.       self.contents.dispose
  53.       self.contents = nil
  54.     end
  55.     @data = []
  56.    
  57.     for i in 0...$game_variables[100]
  58.         @data.push i
  59.     end

  60.     @item_max = @data.size
  61.     if @item_max > 0
  62.       self.contents = Bitmap.new(width - 32, row_max * 32)
  63.       for i in 0...@item_max
  64.         draw_item(i)
  65.       end
  66.     end
  67.   end

  68.   def draw_item(index)
  69.     item = @data[index]
  70.     @data[index] == @data.size ? self.contents.font.color = Color.new(255, 255, 0, 255) : self.contents.font.color = normal_color
  71.     x = 12
  72.     y = index * 32
  73.     rect = Rect.new(x, y, self.width - 32, 32)
  74.     self.contents.fill_rect(rect, Color.new(0, 0, 0, 0))
  75.     opacity = self.contents.font.color == normal_color ? 255 : 128
  76.     self.contents.draw_text(x + 28, y, 212, 32, FUX_BLOCK[index][0], 0)
  77.   end

  78.   def update_help
  79.     @help_window.set_text(self.item == nil ? "" : FUX_BLOCK[self.index][1])
  80.   end
  81.   
  82. end
  83. ########################################
  84. class Scene_Map
  85.   alias:fuxupdate:update
  86.   
  87.   def update
  88.     unless moving? or $game_system.map_interpreter.running? or
  89.            @move_route_forcing or $game_temp.message_window_showing
  90.       if Input.trigger?(Input::A)
  91.         $scene = Scene_Fux2.new
  92.       end
  93.       fuxupdate
  94.     end
  95.   end
  96. end
复制代码

点评

发现有BUG,请见板凳  发表于 2010-12-29 09:59
啥简陋,是简陋得不得了。(心情不好想要吐糟)  发表于 2010-12-29 09:23
RGDirect - DirectX驱动的RGSS,点我了解.
RM全系列成套系统定制请联系QQ1213237796
不接受对其他插件维护的委托

Lv1.梦旅人

小小的百鬼夜行<

梦石
0
星屑
54
在线时间
579 小时
注册时间
2010-7-29
帖子
2682

贵宾

4
发表于 2011-1-8 11:43:53 | 只看该作者
每个任务都应该有自己的一个独立的进度.
不过这个...很难改啊.
跟原版的任务提示有很大的不同><我到现在还不知道它是做什么用的..
虽然建议每个任务都设置一个独立的类似于task[1] = [名称,介绍,进度]
但是那样又变成原版的了><
某只PHP/HTML小白鼠→退屈の间


Cause I knew you were trouble when you walked in
So shame is on me now
I flow me to place i ve never been
till you put me down oh
Now Im lying on the cold hard ground
回复 支持 反对

使用道具 举报

Lv2.观梦者

梦石
0
星屑
635
在线时间
244 小时
注册时间
2010-9-9
帖子
472
3
发表于 2010-12-29 09:29:05 | 只看该作者
本帖最后由 EngShun 于 2010-12-29 09:54 编辑

万一我要重中间插入某些剧情以外的任务
(比如某人叫你找某某东西,找到给你钱)
这种情况要怎么办?
建议增加多一个变量,
一个主要任务,
一个次要任务。

突然发现一个大大大错误,

  1. class Scene_Map
  2.   alias:fuxupdate:update
  3.   
  4.   def update
  5.     if Input.trigger?(Input::A)
  6.       $scene = Scene_Fux2.new
  7.     end
  8.     fuxupdate
  9.   end
  10.   
  11. end  
复制代码
这样会导致事件执行中也能叫出任务画面
应该替换成这个
  1. class Scene_Map
  2.   alias:fuxupdate:update
  3.   
  4.   def update
  5.     unless moving? or $game_system.map_interpreter.running? or
  6.            @move_route_forcing or $game_temp.message_window_showing
  7.       if Input.trigger?(Input::A)
  8.         $scene = Scene_Fux2.new
  9.       end
  10.       fuxupdate
  11.     end
  12.   end
  13. end
复制代码

点评

喵0.0没多想,随便写的  发表于 2010-12-29 10:22

评分

参与人数 1星屑 +132 收起 理由
fux2 + 132 已修正

查看全部评分

回复 支持 反对

使用道具 举报

Lv1.梦旅人

梦石
0
星屑
50
在线时间
202 小时
注册时间
2009-9-6
帖子
307
2
发表于 2010-12-28 13:47:48 | 只看该作者
咱是沙发,果然,有点简陋,我要个美化版的

点评

自己描绘几个图不就好了嘛XD  发表于 2010-12-28 13:56
   .black-box//
-------------制作准备中
小血的百度博客
小血的腾讯博客
小血的新浪微博
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册会员

本版积分规则

拿上你的纸笔,建造一个属于你的梦想世界,加入吧。
 注册会员
找回密码

站长信箱:[email protected]|手机版|小黑屋|无图版|Project1游戏制作

GMT+8, 2024-11-15 23:47

Powered by Discuz! X3.1

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表