亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? game.pas

?? 仙境傳說(RO)私人服務器端源代碼。第一次上傳。
?? PAS
?? 第 1 頁 / 共 5 頁
字號:
          end else if (Copy(str, 1, 11) = 'skillpoint ') and ((DebugCMD and $0008) <> 0) and (tid.ChangeStatSkill = 1) then begin						Val(Copy(str, 12, 256), i, k);						if (k = 0) and (i >= 0) and (i <= 1001) then begin            tc.SkillPoint := i;            SendCStat1(tc, 0, $000c, tc.SkillPoint);            end;          end else if (Copy(str, 1, 11) = 'changestat ') and ((DebugCMD and $0004) <> 0) and (tid.ChangeStatSkill = 1) then begin						sl := TStringList.Create;						sl.DelimitedText := Copy(str, 12, 256);						try							if sl.Count = 2 then begin							Val(sl.Strings[0], i, k);              if(i >= 0) and (i <= 5) then begin							Val(sl.Strings[1], j, k);							if(j >= 1) and (j <= 99) then begin              //if (i = 2) and (j >= 111) and (tc.BaseLV >= 100) then begin              //j := 110 - tc.Bonus[2];              //end;							tc.ParamBase[i] := j;              CalcStat(tc);              SendCStat(tc);              SendCStat1(tc, 0, $0009, tc.StatusPoint);              end;              end;              end;						finally							sl.Free();						end;					end else if (Copy(str, 1, 6) = 'speed ') and ((DebugCMD and $0008) <> 0) and (tid.ChangeStatSkill = 1) then begin						//僗僺乕僪曄峏						Val(Copy(str, 6, 256), i, k);						if (k = 0) and (i >= 25) and (i <= 1000) then begin							tc.DefaultSpeed := i;							CalcStat(tc);							WFIFOW(0, $00b0);							WFIFOW(2, $0000);							WFIFOL(4, tc.Speed);							Socket.SendBuf(buf, 8);						end;      end else if (Copy(str, 1, 5) = 'whois') and ((DebugCMD and $0002) <> 0) and (tid.Whois = 1) then begin        str2 := 'Users Currently Logged in:';
        for i := 0 to CharaName.Count - 1 do begin
				tc1 := CharaName.Objects[i] as TChara;
				if tc1.Login = 2 then begin
        if str2 = 'Users Currently Logged in:' Then begin
        str2 := str2 + tc1.Name;
        end else begin
        str2 := str2 + ',' + tc1.Name;
        end;
				end;
        end;
        DebugOut.Lines.Add(str2);
        w := 200;        WFIFOW(0, $009a);        WFIFOW(2, w);        WFIFOS(4, str2, w - 4);        tc.Socket.SendBuf(buf, w);  end else if (Copy(str, 1, 8) = 'monster ') and ((DebugCMD and $0004) <> 0) and (tid.MonsterSummon = 1) then begin      sl := TStringList.Create;      sl.DelimitedText := Copy(str, 9, 256);							if sl.Count = 2 then begin              if (MobDBName.IndexOf(sl.Strings[0]) <> -1) then begin							Val(sl.Strings[1], j, k);							if(j >= 1) and (j <= 20) then begin          for l := 1 to j do begin          tm := tc.MData;          ts := TMob.Create;					ts.Data := MobDBName.Objects[MobDBName.IndexOf(sl.Strings[0])] as TMobDB;
					ts.ID := NowMobID;
					Inc(NowMobID);
					ts.Name := ts.Data.JName;
					ts.JID := ts.Data.ID;
					ts.Map := tc.Map;
          ts.Data.isLink :=false;
          //ts.Data.isLoot :=false;
					//僾儗僀儎乕偺廃埻9儅僗偺偳偙偐偵彚娨
					ts.Point.X := tc.Point.X + Random(2) - 1;
					ts.Point.Y := tc.Point.Y + Random(2) - 1;

					ts.Dir := Random(8);
					ts.HP := ts.Data.HP;
					ts.Speed := ts.Data.Speed;

					//暒偒娫妘傪嬌戝偵愝掕
					//偙偙偼偪傚偭偲張棟偑揔摉偐側丠

					ts.SpawnDelay1 := $7FFFFFFF;
					ts.SpawnDelay2 := 0;

					ts.SpawnType := 0;
					ts.SpawnTick := 0;
					if ts.Data.isDontMove then
						ts.MoveWait := $FFFFFFFF
					else
          ts.MoveWait := timeGetTime();
					ts.ATarget := 0;
					ts.ATKPer := 100;
					ts.DEFPer := 100;
					ts.DmgTick := 0;

          ts.Element := ts.Data.Element;

          if (SummonMonsterName = true) then begin
          ts.Name := ts.Data.JName;
          end else begin
					ts.Name := 'Summon Monster';
          end;

          if (SummonMonsterExp = false) then begin
					ts.Data.MEXP := 0;
					ts.Data.EXP := 0;
					ts.Data.JEXP := 0;
          end;

          if (SummonMonsterAgo = true) then begin
					ts.isActive := true;
          end else begin
          ts.isActive := ts.Data.isActive;
          end;

					ts.MoveWait := timeGetTime();

					for j := 0 to 31 do begin
						ts.EXPDist[j].CData := nil;
						ts.EXPDist[j].Dmg := 0;
					end;
					if ts.Data.MEXP <> 0 then begin
						for j := 0 to 31 do begin
							ts.MVPDist[j].CData := nil;
							ts.MVPDist[j].Dmg := 0;
						end;
						ts.MVPDist[0].Dmg := ts.Data.HP * 30 div 100; //FA偵30%壛嶼
					end;
          ts.isSummon := True;
          ts.EmperiumID := 0;
          
					tm.Mob.AddObject(ts.ID, ts);
					tm.Block[ts.Point.X div 8][ts.Point.Y div 8].Mob.AddObject(ts.ID, ts);

					SendMData(tc.Socket, ts);
					//廃埻偵憲怣
					SendBCmd(tm,ts.Point,41,tc,False);


if (SummonMonsterMob = true) then begin
    k := SlaveDBName.IndexOf(sl.Strings[0]);
    if (k <> -1) then begin
     ts.isLeader := true;
     
     tss := SlaveDBName.Objects[k] as TSlaveDB;
     if sl.Strings[0] = tss.Name then begin

     h := tss.TotalSlaves;
     ts.SlaveCount := h;
     repeat
      for i := 0 to 4 do begin
        if (tss.Slaves[i] <> -1) and (h <> 0) then begin
          ts1 := TMob.Create;
					ts1.Data := MobDBName.Objects[tss.Slaves[i]] as TMobDB;
					ts1.ID := NowMobID;
          ts.Slaves[h] := ts1.ID;
					Inc(NowMobID);
					ts1.Name := ts1.Data.JName;
					ts1.JID := ts1.Data.ID;
          ts1.LeaderID := ts.ID;
          ts1.Data.isLink := false;
					ts1.Map := ts.Map;
					ts1.Point.X := ts.Point.X;
					ts1.Point.Y := ts.Point.Y;
					ts1.Dir := ts.Dir;
					ts1.HP := ts1.Data.HP;
          if ts.Data.Speed < ts1.Data.Speed then begin
					ts1.Speed := ts.Data.Speed;
          end else begin
          ts1.Speed := ts1.Data.Speed;
          end;
					ts1.SpawnDelay1 := $7FFFFFFF;
					ts1.SpawnDelay2 := 0;
					ts1.SpawnType := 0;
					ts1.SpawnTick := 0;
					if ts1.Data.isDontMove then
						ts1.MoveWait := $FFFFFFFF
					else
          ts1.MoveWait := ts.MoveWait;
					ts1.ATarget := 0;
					ts1.ATKPer := 100;
					ts1.DEFPer := 100;
					ts1.DmgTick := 0;
          ts1.Element := ts1.Data.Element;
          ts1.isActive := false;
					for j := 0 to 31 do begin
						ts1.EXPDist[j].CData := nil;
						ts1.EXPDist[j].Dmg := 0;
					end;
					if ts1.Data.MEXP <> 0 then begin
						for j := 0 to 31 do begin
							ts1.MVPDist[j].CData := nil;
							ts1.MVPDist[j].Dmg := 0;
						end;
						ts1.MVPDist[0].Dmg := ts1.Data.HP * 30 div 100; //FA偵30%壛嶼
					end;
					tm.Mob.AddObject(ts1.ID, ts1);
					tm.Block[ts1.Point.X div 8][ts1.Point.Y div 8].Mob.AddObject(ts1.ID, ts1);
					ts1.isSummon := true;
          ts1.isSlave := true;
          ts1.EmperiumID := 0;
          
					SendMData(tc.Socket, ts1);
					//廃埻偵憲怣
					SendBCmd(tm,ts1.Point,41,tc,False);

          h := h - 1;
        end;
      end;
     until (h <= 0);

     end;
    end;
end;end;end;end;end;          end else if (Copy(str, 1, 5) = 'zeny ') and ((DebugCMD and $0008) <> 0) and (tid.ChangeStatSkill = 1) then begin						Val(Copy(str, 6, 256), i, k);						if (k = 0) and (i >= 0) and (i <= 9999999999) and (tc.Zeny + i <= 9999999999) then begin							tc.Zeny := tc.Zeny + i;							WFIFOW(0, $00b1);					    WFIFOW(2, $0014);					    WFIFOL(4, tc.Zeny);					    Socket.SendBuf(buf, 8);						end;          end else if (Copy(str, 1, 4) = 'ban ') and ((DebugCMD and $0008) <> 0) and (tid.GotoSummonBanish = 1) then begin              s := Copy(str, 5, 256);							if CharaName.Indexof(s) <> -1 then begin              tc1 := CharaName.Objects[CharaName.Indexof(s)] as TChara;              if BannedDB.IndexOf(tc1.IP) = -1 then begin              tbn := TBan.Create;              tbn.BIP := tc1.IP;              BannedDB.AddObject(tbn.BIP, tbn);                            if (tc1.Login <> 0) then begin              WFIFOW( 0, $0081);              WFIFOB( 2, 08);
              tc1.Socket.SendBuf(buf, 3);              end;              if (UseDatabase = true) then begin              AssignFile(txt, AppPath + 'addban.txt');
       	      if not FileExists(AppPath + 'addban.txt') then begin
              Rewrite(txt);
              end else begin
              Append(txt);
              end;
              Writeln(txt, tc1.IP);
              DebugOut.Lines.Add('Ban Added: ' + tc1.IP);
              Flush(txt);
						  CloseFile(txt);
              end;
              end;              end;                         end else if (Copy(str, 1, 5) = 'goto ') and ((DebugCMD and $0008) <> 0) and (tid.GotoSummonBanish = 1) then begin            s := Copy(str, 6, 256);
						try
							if CharaName.Indexof(s) <> -1 then begin
              tc1 := CharaName.Objects[CharaName.Indexof(s)] as TChara;
							if (tc.Hidden = false) then SendCLeave(tc, 2);
							tc.tmpMap := tc1.Map;
							tc.Point := tc1.Point;
							MapMove(Socket, tc1.Map, tc1.Point);
              end;
						finally

						end;

          end else if (Copy(str, 1, 5) = 'kick ') and ((DebugCMD and $0008) <> 0) and (tid.GotoSummonBanish = 1) then begin              s := Copy(str, 6, 256);							if CharaName.Indexof(s) <> -1 then begin              tc1 := CharaName.Objects[CharaName.Indexof(s)] as TChara;              if (tc1.Login <> 0) then begin              WFIFOW( 0, $0081);              WFIFOB( 2, 08);
              tc1.Socket.SendBuf(buf, 3);              end;              end;          end else if (Copy(str, 1, 7) = 'kickall') and ((DebugCMD and $0008) <> 0) and (tid.GotoSummonBanish = 1) then begin							for i := 0 to CharaName.Count -1 do begin              tc1 := CharaName.Objects[i] as TChara;              if (tc1.Login <> 0) then begin              WFIFOW( 0, $0081);              WFIFOB( 2, 08);
              tc1.Socket.SendBuf(buf, 3);              end;              end;          end else if (Copy(str, 1, 5) = 'kill ') and ((DebugCMD and $0008) <> 0) and (tid.KillDieAlive = 1) then begin            s := Copy(str, 6, 256);						try							if CharaName.Indexof(s) <> -1 then begin              tc1 := CharaName.Objects[CharaName.Indexof(s)] as TChara;              tc1.HP := 0;						  tc1.Sit := 1;						  SendCStat1(tc1, 0, 5, tc1.HP);						  WFIFOW(0, $0080);						  WFIFOL(2, tc1.ID);						  WFIFOB(6, 1);              Socket.SendBuf(buf, 7);              WFIFOW( 0, $0080);					    WFIFOL( 2, tc1.ID);					    WFIFOB( 6, 1);					    SendBCmd(tm, tc1.Point, 7);              end;						finally						end;        end else if (Copy(str, 1, 7) = 'summon ') and ((DebugCMD and $0008) <> 0) and (tid.GotoSummonBanish = 1) then begin            s := Copy(str, 8, 256);						try							if CharaName.Indexof(s) <> -1 then begin              tc1 := CharaName.Objects[CharaName.Indexof(s)] as TChara;              if tc1.Login = 2 then begin							SendCLeave(tc1, 2);							tc1.tmpMap := tc.Map;							tc1.Point := tc.Point;							MapMove(tc1.Socket, tc.Map, tc.Point);              end;              end;						finally						end;            end else if (Copy(str, 1, 7) = 'banish ') and ((DebugCMD and $0008) <> 0) and (tid.GotoSummonBanish = 1) then begin            sl := TStringList.Create;						sl.DelimitedText := Copy(str, 8, 256);						try							Val(sl.Strings[sl.Count - 2], i, k);              if k <> 0 then continue;							Val(sl.Strings[sl.Count - 1], j, k);              if k <> 0 then continue;              if MapList.IndexOf(sl.Strings[sl.Count - 3]) <> -1 then begin							ta := MapList.Objects[MapList.IndexOf(sl.Strings[sl.Count - 3])] as TMapList;							if (i < 0) or (i >= ta.Size.X) or (j < 0) or (j >= ta.Size.Y) then continue;              for k := 0 to sl.Count - 4 do begin					    s := s + ' ' + sl.Strings[k];              s := Trim(s);				      end;              if CharaName.Indexof(s) <> -1 then begin              tc1 := CharaName.Objects[CharaName.Indexof(s)] as TChara;              if tc1.Login = 2 then begin							SendCLeave(tc1, 2);							tc1.tmpMap := sl.Strings[sl.Count - 3];              xy.X := i;              xy.Y := j;							tc1.Point := xy;							MapMove(tc1.Socket, tc1.tmpMap, tc1.Point);              end;              end;                            end;						finally							sl.Free();						end;					end else if (Copy(str, 1, 4) = 'job ') and ((DebugCMD and $0010) <> 0) and (tid.ChangeJob = 1) then begin{廋惓}                                          if (tc.JID <> 0) or ((DebugCMD and $0020) <> 0) then //僲乕價僗偐傜偼弌棃側偄                                                begin						        //怑嬈曄峏										Val(Copy(str, 5, 256), i, k);										if (k = 0) and (i >= 0) and (i <= 23) and (i <> 13) and (i <> 21) then begin						        	tc.JID := i;											//僗僥乕僞僗嵞寁嶼											tc.ClothesColor := 0; //嫮惂揑偵弶婜抣											CalcStat(tc);                      SendCStat(tc);											SendCSkillList(tc);											WFIFOW(0, $00c3);											WFIFOL(2, tc.ID);						        	WFIFOB(6, 0);											WFIFOB(7, i);											SendBCmd(tm, tc.Point, 8);										end;																								end;{廋惓僐僐傑偱}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国女主播成人在线观看| 国产精品亚洲视频| 亚洲综合成人在线| 亚洲欧美偷拍三级| 亚洲特黄一级片| 亚洲精品日韩一| 亚洲激情在线激情| 午夜激情一区二区三区| 亚洲午夜激情网站| 五月激情综合网| 激情成人综合网| 成人亚洲一区二区一| 国产综合一区二区| 东方aⅴ免费观看久久av| 成人影视亚洲图片在线| 91福利视频久久久久| 欧美日韩一区二区在线观看视频| 欧美美女一区二区在线观看| 精品精品国产高清一毛片一天堂| 精品国产电影一区二区| 亚洲国产精品精华液ab| 亚洲综合在线电影| 视频一区欧美日韩| 精品一区二区三区在线视频| 成人性生交大片免费看在线播放| 成人动漫精品一区二区| 91精品91久久久中77777| 日韩一区二区不卡| 国产精品麻豆欧美日韩ww| 一区二区三区.www| 激情文学综合网| 91国产成人在线| 久久久综合精品| 亚洲黄色小视频| 国产精品一品二品| 欧美婷婷六月丁香综合色| 2017欧美狠狠色| 亚洲一本大道在线| 不卡一区在线观看| 91精品国产丝袜白色高跟鞋| 国产精品视频线看| 日本伊人午夜精品| 91成人网在线| 国产精品免费av| 欧美亚洲国产一区二区三区va| 国产一区在线精品| 91偷拍与自偷拍精品| 日韩一区二区三区精品视频 | 欧美经典一区二区三区| 亚洲高清不卡在线| 99久久精品国产毛片| 2020国产精品自拍| 日韩国产一区二| 色菇凉天天综合网| 国产精品久线在线观看| 久久99精品久久久| 欧美一区2区视频在线观看| 亚洲乱码日产精品bd| 成人动漫视频在线| 亚洲国产精品高清| 国产福利一区二区三区视频| 欧美一级淫片007| 亚洲成人激情综合网| 色美美综合视频| 最新中文字幕一区二区三区 | 亚洲免费观看高清完整版在线观看熊| 久久精品久久综合| 日韩一区二区在线观看视频播放 | 欧美三级三级三级| 国产精品嫩草99a| 成人免费毛片aaaaa**| 精品国内片67194| 蜜臀av一区二区在线免费观看| 在线观看日韩毛片| 亚洲一区二区三区激情| 欧美三级电影一区| 亚洲国产精品一区二区久久 | 亚洲成a人片在线不卡一二三区| 成人精品高清在线| 亚洲婷婷综合色高清在线| 成人免费视频视频| 亚洲色图制服丝袜| 日本二三区不卡| 亚洲 欧美综合在线网络| 欧美日韩一区二区三区免费看 | 久久在线免费观看| 国产精品996| 中文字幕不卡在线观看| 91一区二区三区在线播放| 亚洲乱码日产精品bd| 99热这里都是精品| 亚洲视频狠狠干| 欧美日韩精品一区二区三区| 日本美女视频一区二区| 精品久久久久久久久久久院品网| 韩国女主播一区| 综合自拍亚洲综合图不卡区| 欧美日韩三级在线| 国产福利一区在线| 亚洲第一主播视频| 久久久国产午夜精品| 99国产一区二区三精品乱码| 五月婷婷久久综合| 国产午夜精品一区二区三区嫩草| av不卡在线播放| 日韩av成人高清| 国产精品久久久久久一区二区三区| 94-欧美-setu| 久久99国产精品成人| 亚洲品质自拍视频| 欧美tickle裸体挠脚心vk| av在线播放一区二区三区| 日韩精品乱码av一区二区| 国产精品国产自产拍在线| 欧美精品在线一区二区| 国精产品一区一区三区mba视频| 伊人开心综合网| 亚洲精品一线二线三线| 欧美日韩国产区一| 99久久99久久综合| 韩日av一区二区| 亚洲va天堂va国产va久| 国产精品对白交换视频| 日韩欧美激情在线| 欧美在线视频全部完| 国产一区二区91| 美女视频黄 久久| 亚洲自拍偷拍av| 亚洲人亚洲人成电影网站色| 日韩欧美色电影| 欧美精品色一区二区三区| av一二三不卡影片| 黄页网站大全一区二区| 日本亚洲电影天堂| 亚洲成a人片在线观看中文| 一区二区三区四区不卡在线 | 欧美日韩国产123区| 97久久精品人人做人人爽50路| 黑人巨大精品欧美黑白配亚洲| 午夜精品福利一区二区三区蜜桃| 亚洲色图自拍偷拍美腿丝袜制服诱惑麻豆 | 99精品视频在线观看免费| 国产精品911| 国产精品白丝av| 国产九色精品成人porny | 高清在线成人网| 国产资源在线一区| 黄色精品一二区| 国产一区中文字幕| 国产盗摄女厕一区二区三区| 国产乱子轮精品视频| 国产一区二区在线电影| 久久国产精品一区二区| 久久国产精品无码网站| 麻豆91免费看| 国产呦萝稀缺另类资源| 国产.欧美.日韩| 波多野结衣91| 色猫猫国产区一区二在线视频| 色婷婷综合视频在线观看| 欧美在线免费观看视频| 欧美性高清videossexo| 欧美精品乱码久久久久久| 日韩一区二区在线免费观看| 欧美不卡123| 日本一区二区综合亚洲| 国产精品无人区| 亚洲最新在线观看| 青青国产91久久久久久| 国产精品正在播放| 91视视频在线观看入口直接观看www| 91色|porny| 欧美一区二区三区视频在线 | 风间由美一区二区三区在线观看| 国产精品资源网| 在线亚洲+欧美+日本专区| 欧美一卡在线观看| 国产精品久久三| 亚洲1区2区3区视频| 国产乱淫av一区二区三区| 一本一本久久a久久精品综合麻豆| 欧美性生活影院| 2020国产精品| 亚洲va天堂va国产va久| 国产伦理精品不卡| 91久久精品一区二区| 欧美精品一区二区高清在线观看| 国产精品丝袜久久久久久app| 午夜激情久久久| 成人亚洲一区二区一| 91精品蜜臀在线一区尤物| 中文字幕av资源一区| 亚洲aaa精品| 91美女片黄在线| 欧美mv和日韩mv的网站| 亚洲黄色录像片| 国产精品99久久久久久久女警| 欧美日韩午夜在线视频| 亚洲人精品午夜| 国产成人免费xxxxxxxx|