本帖最后由 百里_飞柳 于 2015-11-7 16:28 编辑
YEA - Message System
我重新审了下你的问题,觉得yea的这个更加适合你,是在原始的显示框的上面再显示一个名字小框
具体使用方法见脚本内开头的注释
简易关于名字框的注释的翻译:
# NameWindow: Effect: # \n<x> - Creates a name box with x string. Left side. *Note # \nc<x> - Creates a name box with x string. Centered. *Note # \nr<x> - Creates a name box with x string. Right side. *Note # # *Note: Works for message window only.
# NameWindow: Effect:
# \n<x> - Creates a name box with x string. Left side. *Note
# \nc<x> - Creates a name box with x string. Centered. *Note
# \nr<x> - Creates a name box with x string. Right side. *Note
#
# *Note: Works for message window only.
直接在显示文章中输入——(以下x均替换为需要显示的姓名文字,如 \n<小红>)
\n<x> 在文本框左上创建一个姓名框
\nc<x> 在文本框中间创建一个姓名框
\nr<x> 在文本框右上创建一个姓名框
然后脚本中的188行可以进行姓名框的详细属性调整(本人的较渣的翻译)
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # - Name Window Settings - #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- # The name window is a window that appears outside of the main message # window box to display whatever text is placed inside of it like a name. #=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- NAME_WINDOW_X_BUFFER = 40#-20 # Buffer x position of the name window. 默认姓名框显示x坐标补充值 NAME_WINDOW_Y_BUFFER = 8 # Buffer y position of the name window. 默认姓名框y坐标补充值 NAME_WINDOW_PADDING = 4#20 # Padding added to the horizontal position. 垂直方向框与文字间留空的像素大小 NAME_WINDOW_OPACITY = 150 # Opacity of the name window. 姓名框背景透明度 NAME_WINDOW_COLOUR = 6 # Text colour used by default for names. 姓名文字显示的默认颜色序号(颜色与对应序号见System\Windows.png右下角,第一个颜色为序号0)
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
# - Name Window Settings -
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
# The name window is a window that appears outside of the main message
# window box to display whatever text is placed inside of it like a name.
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
NAME_WINDOW_X_BUFFER = 40#-20 # Buffer x position of the name window. 默认姓名框显示x坐标补充值
NAME_WINDOW_Y_BUFFER = 8 # Buffer y position of the name window. 默认姓名框y坐标补充值
NAME_WINDOW_PADDING = 4#20 # Padding added to the horizontal position. 垂直方向框与文字间留空的像素大小
NAME_WINDOW_OPACITY = 150 # Opacity of the name window. 姓名框背景透明度
NAME_WINDOW_COLOUR = 6 # Text colour used by default for names. 姓名文字显示的默认颜色序号(颜色与对应序号见System\Windows.png右下角,第一个颜色为序号0)
|