G
GAOGAIGAR
Unregistered / Unconfirmed
GUEST, unregistred user!
{声明}
function sendTeleport(pos:string):string;
{实现代码}
function sendTeleport(pos:string):string;
var
Location:string; //Location=位置
begin
Location:='';
if length(pos)>16 then location:=copy(pos,1,16)
else
location:=pos;
Result:=chr($1B)+chr(1)+chr($1A)+chr(0)+
location+fchar(chr(0),16-length(location));
end;
不知道这个是属于哪类问题,不过程序是游戏内挂,上面是程序的代码,我想在按下tele按钮后使用sendTeleport这个函数请问要怎么做?
function sendTeleport(pos:string):string;
{实现代码}
function sendTeleport(pos:string):string;
var
Location:string; //Location=位置
begin
Location:='';
if length(pos)>16 then location:=copy(pos,1,16)
else
location:=pos;
Result:=chr($1B)+chr(1)+chr($1A)+chr(0)+
location+fchar(chr(0),16-length(location));
end;
不知道这个是属于哪类问题,不过程序是游戏内挂,上面是程序的代码,我想在按下tele按钮后使用sendTeleport这个函数请问要怎么做?