SpiritOfChaos, on 14 April 2012 - 06:58 PM, said:
Carni 2500 me 0 other person 0
That's impossible really -.- Can you reproduce it? try using "process older log file" (trim the log first)
This is all the code for .ap, there's nothing there that would modify the AP mount.
if finds('.ap',cm) then begin
ApCalc.CopyAPToClipboard;
Exit;
end;
procedure CopyAPToClipboard;
Var a: Integer;
s,p: string;
begin
s := '';
for a := 0 to Players.Count-1 do
with TDPSer(Players[a]) do begin
if (PlayerName = Unknown) or
(PlayerName = AllPets) or
(PlayerName = Godstones) then Continue;
if finds('-',PlayerName) or
finds(' ',PlayerName) then Continue;
p := PlayerName;
if Alias <> '' then p := Alias;
s := s + p + ' ' + IntToStr(AP) + ', ';
end;
if s <> '' then Delete(s,length(s)-1,2);
if length(s) > 255 then s := Copy(s,1,255);
Clipboard.AsText := s;
TrayMsg(TrayNoAction,'AP: '+s,'',bfNone);
end;
How do you do it, do you type ".ap" + enter, or you select/cut?
This post has been edited by Mikuni: 14 April 2012 - 07:48 PM

Register Now!
Help




MultiQuote



