- 游戏资料
- 白猪插件如何显示地面动态光柱 2023-7-29
- 在Centos7.6上部署Docker环境以及安装docker-compose 2022-9-29
- 在Unity中,协程(Coroutine)函数 7月前
- 大闹天宫145 6月前
-
Comprar Cialis Y Pagar Con Paypal NaibeBap https://bansocialism.com/>buy cialis and viagra online Soombubbal What Is Keflex Meds For
- 战神引擎
- V8
- lua
- 传奇
- 脚本
- 安卓
- Linux
- 天花板
- 冰雪
- 手工端
- 手游
- 数据库
- 系统
- unity
- 666
- 游戏
- 传奇3
- 单机
- zircon
- 176
- 复古
- 野径云俱黑赶快
- 群服
- CentOS
- 特色
- 存档
- 破解版
- 问题
- 盘古
- 白猪
- 离线版
- 话题
- 图片
- 格式
- 沉默
- 光芒引擎
- 说明书
- 富士康
- iPhone
- 君临
- 阅读
- 小说
- 水晶传奇
- Controller
- 代码
- TeamViewer
- 向日葵
- 新春
- 真三国
- sql
- 攻略
- 雷神
- Gee
- 情怀
- 魔兽
- 单机传奇
- 酷狗
- 下载
- 探秘
- 3proxy
- 登录
- sxg
- 丛林肉搏
- 原神
- 第一版
- 苹果
- XO引擎
- socks5
- 硬盘
- 检测
- 翻墙
- 黑神话
- 黑神话悟空
- 热血传奇
- 客户端
{
let 战神引擎全系列课程, QQ群:***********
beiZhu:
}
program mir2;
function printStr(Pstr:string;Pid:integer):string;
var len, arrlen, index, temp_len, temp_index, i : integer;
str, temp_str : string;
strArr : array[1..100] of string;
begin
str := Pstr;
len := length(str);
index:=1;
for i:=1 to 100 do
begin
temp_str:= copy(str,index,len);
temp_len := length(temp_str);
temp_index := pos(',',temp_str);
if temp_index = 0 then
begin
strArr[i] := copy(temp_str,0,temp_len);
arrlen:=i; break;
end
else
strArr[i] := copy(temp_str,0,temp_index-1);
index := index + temp_index;
end
result:=strArr[Pid];
end;
procedure huishouDia;
var i, temp_px, temp_py, px, py, scolor : integer; temp_str, show_str:string; code : Boolean;
begin
if This_Player.GetV(17,26) >= 10 then
begin
This_Npc.NpcDialog(This_Player,'对不起,你错误次数达到10次,无法使用此功能');exit;
end
px:=This_Player.My_x;
py:=This_Player.My_y;
code:=false;
for i:=1 to 4 do
begin
scolor:=255;
if i = 1 then
temp_str:='A';
if i = 2 then
temp_str:='B';
if i = 3 then
temp_str:='C';
if i = 4 then
temp_str:='D';
temp_px:=random(500)+100;
temp_py:=random(500)+100;
if random(3) = 0 then
begin
if not(code) then
begin
temp_px:=px;
temp_py:=py;
scolor:=222;
code:=true;
end
end
if i = 4 then
begin
if not(code) then
begin
temp_px:=px;
temp_py:=py;
scolor:=222;
code:=true;
end
end
show_str:=show_str+'|<'+temp_str+'/fcolor='+inttostr(scolor)+'>: <'+inttostr(temp_px)+' , '+inttostr(temp_py)+' /fcolor='+inttostr(scolor)+'> <选择答案 '+temp_str+'/@huishouYz~'+inttostr(px)+','+inttostr(py)+','+inttostr(temp_px)+','+inttostr(temp_py)+'>';
show_str:=show_str+'|';
end
This_Npc.NpcDialog(This_Player,
'当前是啥 次数 qing shibai cishu '+inttostr(This_Player.GetV(17,26))+' chao guo 10 ci zuolao'+
'|你当前所在的坐标 '+inttostr(px)+' ,'+inttostr(py)+' 请选择<绿色答案/fcolor=222>|'+
show_str
);
end;
procedure _huishouYz(pstr:string);
var px , py , temp_px, temp_py : integer;
begin
px:=strtoint(printStr(pstr,1));
py:=strtoint(printStr(pstr,2));
temp_px:=strtoint(printStr(pstr,3));
temp_py:=strtoint(printStr(pstr,4));
if (px = temp_px) and (py = temp_py) then
begin
This_Npc.NpcDialog(This_Player,'验证成功,这里开始调用NPC功能');
//domain;
end
else
begin
This_Player.SetV(17,26,This_Player.GetV(17,26)+1);
if This_Player.GetV(17,26) >= 10 then
begin
This_Npc.NpcDialog(This_Player,'你已经累计失败10次~在这里要把你关进小黑屋了咯~');
//This_Player.RandomFlyTo('SD001');
//This_Player.PlayerNotice('shibaichaoguo10ci',2);
end
else
begin
This_Npc.NpcDialog(This_Player,'验证失败 shibai ci shu + 1');
end
end
end;
Begin
if This_Player.GetV(17,26) = -1 then
This_Player.SetV(17,26,0);
huishouDia;
end.