Changeset 13 for trunk/Main.pas
- Timestamp:
- Nov 27, 2009, 8:36:34 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Main.pas
r10 r13 12 12 13 13 const 14 ApplicationVersion = '3. 3';14 ApplicationVersion = '3.4'; 15 15 ApplicationRevision = 6; 16 16 R = '\Software\maronsoft\Heroes of Fantasy client pack\'; 17 UpdateInfoFile = 'http://wow.zdechov.net/client/aktualizace.txt'; 18 DefaultRSSChannel = 'http://wow.zdechov.net/rss.php?category=articles'; 19 OldRSSChannel = 'http://wow.zdechov.net/rss.php'; 17 HoFWeb = 'www.heroesoffantasy.cz'; 18 HoFRealmList = 'heroesoffantasy.cz'; 19 UpdateInfoFile = 'http://' + HoFWeb + '/client/aktualizace.txt'; 20 DefaultRSSChannel = 'http://' + HoFWeb + '/rss.php?category=articles'; 21 OldRSSChannel = 'http://' + HoFWeb + '/rss.php'; 20 22 AoWoWSearchURL = 'http://wowpreklad.zdechov.net/aowow/?search='; 21 HoFOnlineListURL = 'http://wow.zdechov.net/stat/stat.xml'; 22 ProjectHomepage = 'http://wow.zdechov.net/?page=client'; 23 23 HoFOnlineListURL = 'http://' + HoFWeb + '/stat/stat.xml'; 24 ProjectHomepage = 'http://' + HoFWeb + '/?page=client'; 25 AuthorEmail = 'maron2@centrum.cz'; 26 24 27 type 25 28 TWMMoving = record … … 343 346 SetLength(Servers, 3); 344 347 Servers[0].Name := 'Heroes of Fantasy'; 345 Servers[0].Address := 'wow.zdechov.net';348 Servers[0].Address := HoFRealmList; 346 349 Servers[0].OnlinePlayersAddress := HoFOnlineListURL; 347 350 Servers[0].ExeFile := GetWoWExeFile; 348 351 Servers[0].Image := '1'; 349 Servers[0].Description := 'Free server' +chr(13)+chr(10)+'Server podporovaný výrobcem programu'+chr(13)+chr(10)+'web: http://wow.zdechov.net/'+chr(13)+chr(10)+'reamlist: wow.zdechov.net';352 Servers[0].Description := 'Free server'#13#10'Server podporovaný výrobcem programu'#13#10'web: http://' + HoFWeb + '/'#13#10'reamlist: ' + HoFRealmList; 350 353 351 354 Servers[1].Name := 'Oficiální Server - Eu'; … … 353 356 Servers[1].ExeFile := GetWoWExeFile; 354 357 Servers[1].Image := ''; 355 Servers[1].Description := 'Oficiální server - Evropa' +chr(13)+chr(10)+'Web: http://www.wow-europe.com/';358 Servers[1].Description := 'Oficiální server - Evropa'#13#10'Web: http://www.wow-europe.com/'; 356 359 357 360 Servers[2].Name := 'Oficiální Server - USA'; … … 359 362 Servers[2].ExeFile := GetWoWExeFile; 360 363 Servers[2].Image := ''; 361 Servers[2].Description := 'Oficiální server - Evropa' +chr(13)+chr(10)+'Web: http://www.worldofwarcraft.com/';364 Servers[2].Description := 'Oficiální server - Evropa'#13#10'Web: http://www.worldofwarcraft.com/'; 362 365 end; 363 366 … … 1037 1040 with Servers[length(Servers) - 1] do begin 1038 1041 Name := 'Heroes of Fantasy'; 1039 Address := 'wow.zdechov.net';1042 Address := HoFRealmList; 1040 1043 OnlinePlayersAddress := HoFOnlineListURL; 1041 1044 ExeFile := GetWoWExeFile; 1042 1045 Image := '1'; 1043 Description := 'Heroes of Fantasy - Free server' +chr(13)+chr(10)+' 2x XP'+chr(13)+chr(10)+'web: http://wow.zdechov.net/'+chr(13)+chr(10)+'realmlist: wow.zdechov.net';1046 Description := 'Heroes of Fantasy - Free server'#13#10' 2x XP'#13#10'web: http://' + HoFWeb + '/'#13#10'realmlist: ' + HoFRealmList; 1044 1047 end; 1045 1048 WriteImages; … … 1203 1206 { 1204 1207 <?xml version="1.0" encoding="UTF-8"?> 1205 <!DOCTYPE server SYSTEM "http://w ow.zdechov.net/projectonlineplayes/onlineplayers.dtd">1208 <!DOCTYPE server SYSTEM "http://www.heroesoffantasy.cz/projectonlineplayes/onlineplayers.dtd"> 1206 1209 <server> 1207 1210 <servername>Heroes Of Fantasy</servername> 1208 <serveraddress>w ow.zdechov.net</serveraddress>1211 <serveraddress>www.heroesoffantasy.cz</serveraddress> 1209 1212 <owner>Chronos</owner> 1210 1213 <patch>2.13</patch> … … 1421 1424 procedure TForm1.Importzwowstatusnet1Click(Sender: TObject); 1422 1425 begin 1423 //http://wowstatus.net/serverlist.php1424 1425 // načtení počtu serverů1426 // http://wowstatus.net/serverlist.php 1427 1428 // Načtení počtu serverů 1426 1429 Form8.Caption := 'Import serverů z WoWStatus.net'; 1427 1430 Form8.LoadCountRegServers; 1428 Form9.Gauge1.MaxValue := CountWoWStatusServers +80;1431 Form9.Gauge1.MaxValue := CountWoWStatusServers + 80; 1429 1432 Form9.Show; 1430 1433 … … 1432 1435 Form8.ListView1.Clear; 1433 1436 Form8.WriteServersWoWStatus('http://wowstatus.net/serverlist.php'); 1434 1435 1437 Form9.Close; 1436 1438 1437 1438 if EndLoadingBool = false then begin 1439 if not EndLoadingBool then begin 1439 1440 Form8.Show; 1440 // uložení počtu serverů1441 // Uložení počtu serverů 1441 1442 CountWoWStatusServers := Form8.ListView1.Items.Count; 1442 1443 Form8.SaveCountRegServers; 1443 1444 end; 1444 1445 // Form8.Timer1.Enabled := true; 1445 1446 1446 end; 1447 1447
Note:
See TracChangeset
for help on using the changeset viewer.