插件滚屏配置图文教程

滚屏也是通过自定义实现的,服务端已经封装好了函数。找到文件 extendUIs.pas 。滚屏函数为 ServerSayPlus

Fortran

//滚屏函数
procedure ServerSayPlus(content:string);
var wordlen, time, endpoint, txtlen:integer;
begin
wordlen := 18;
time := 5;
endpoint := –500;
txtlen := Length(content);
time := Round(txtlen * 0.2);
endpoint := endpoint – txtlen * wordlen;
ServerSay(‘NC=Bg:alert:bg:center:0:nil:240|AutoHide:’+inttostr(time)+‘|1:S-1:270:18:500:30:0|1@S-1:Text:600:nil:18:’+content+‘@243:left:’+inttostr(endpoint)+‘:nil:’+inttostr(time)+, 5);
end;

其中的参数不要去调整,但自定义的内容可以微调,比如字体大小、颜色等。

Fortran

1@S-1:Text:600:nil:18:‘+content+’@243:left……

18:是字体大小

243:是默认颜色,根据自己的喜好调整

使用方法:

Fortran

//首先需要引用 extendUIs.pas,随后直接调用函数即可。
ServerSayPlus(‘大神登陆了热血传奇!’);
分享到:
赞(0)