赞 | 447 |
VIP | 56 |
好人卡 | 75 |
积分 | 415 |
经验 | 124650 |
最后登录 | 2024-11-2 |
在线时间 | 7591 小时 |
Lv5.捕梦者 (管理员) 老黄鸡
- 梦石
- 0
- 星屑
- 41508
- 在线时间
- 7591 小时
- 注册时间
- 2009-7-6
- 帖子
- 13502
|
本帖最后由 fux2 于 2011-2-10 13:16 编辑
回复 夕阳武士 的帖子
加强对话框难道VX没有吗?
以下是刚写的显示头像代码= =
显示文章开头输入"\m"就会显示当前角色的头像.- class Window_Message < Window_Selectable
-
- def convert_special_characters
- @text.gsub!(/\\V\[([0-9]+)\]/i) { $game_variables[$1.to_i] }
- @text.gsub!(/\\N\[([0-9]+)\]/i) { $game_actors[$1.to_i].name }
- @text.gsub!(/\\C\[([0-9]+)\]/i) { "\x01[#{$1}]" }
- if @text.index(/\\m/) == 0
- @text.gsub!(/\\m/) { "" }
- $game_message.face_name = $game_party.members[0].face_name
- $game_message.face_index = $game_party.members[0].face_index
- end
- @text.gsub!(/\\G/) { "\x02" }
- @text.gsub!(/\\\./) { "\x03" }
- @text.gsub!(/\\\|/) { "\x04" }
- @text.gsub!(/\\!/) { "\x05" }
- @text.gsub!(/\\>/) { "\x06" }
- @text.gsub!(/\\</) { "\x07" }
- @text.gsub!(/\\\^/) { "\x08" }
- @text.gsub!(/\\\\/) { "\\" }
- end
-
- end
复制代码 |
|