Jump to content

wongerlt

Members
  • Posts

    557
  • Joined

  • Last visited

  • Days Won

    7
  • Feedback

    0%

Everything posted by wongerlt

  1. item_id = 57 AND count > 10 AND access_level = 0
  2. use cronjobs
  3. check file encode, with example notepad++ or php version, rly idk :D or if u need just write result to file. <?php $host = ''; //Hosting $user = ''; //Username $pass = ''; //Password $db = ''; //DatabaseName $top = '100'; //Top Number $countpvp = 1; try { $conn = new PDO("mysql:host=$host;dbname=$db", $user, $pass); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $conn->query("SET NAMES 'utf8'"); } catch(PDOException $e) { echo "Connection failed: " . $e->getMessage(); } $out = " <table> <tr> <th align='left'>Name</th> <th align='right'>&nbsp;</th> <th align='right'>PvP</th> </tr> "; $pvp = "SELECT char_name, pvpkills FROM characters WHERE pvpkills > 0 AND accesslevel <= 0 ORDER by pvpkills DESC LIMIT $top "; $pvp = $conn->prepare($pvp); $pvp->execute(); while($row = $pvp->fetch() ) { $countpvp++; $out .= " <tr> <td align='left'><span>".$row['char_name']."</span></td> <td align='right'><span>&nbsp;</span></td> <td align='right'>".$row['pvpkills']."</td> </tr> "; } $out .= " </table> "; file_put_contents("test.doc",$out); // this save doc to next to index.php ?>
  4. at same place where player get rebirth book
  5. try this: <?php $host = ''; //Hosting $user = ''; //Username $pass = ''; //Password $db = ''; //DatabaseName $top = '100'; //Top Number $countpvp = 1; try { $conn = new PDO("mysql:host=$host;dbname=$db", $user, $pass); $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); $conn->query("SET NAMES 'utf8'"); } catch(PDOException $e) { echo "Connection failed: " . $e->getMessage(); } header("Content-type: application/vnd.ms-word"); header("Content-Disposition: attachment;Filename=test.doc"); ob_start(); echo " <table> <tr> <th align='left'>Name</th> <th align='right'>&nbsp;</th> <th align='right'>PvP</th> </tr> "; $pvp = "SELECT char_name, pvpkills FROM characters WHERE pvpkills > 0 AND accesslevel <= 0 ORDER by pvpkills DESC LIMIT $top "; $pvp = $conn->prepare($pvp); $pvp->execute(); while($row = $pvp->fetch() ) { $countpvp++; echo " <tr> <td align='left'><span>".$row['char_name']."</span></td> <td align='right'><span>&nbsp;</span></td> <td align='right'>".$row['pvpkills']."</td> </tr> "; } echo " </table> "; $out = ob_get_contents(); ob_end_clean(); echo $out; file_put_contents("test.doc",$out); // this save doc to next to index.php ?>
  6. just check results with, example print_r $row... and me suggestion dont use web and game server in same server. Use cronjobs for data update, example every 5min.
  7. do you try to see others skills who have passive type?
  8. View File L2Gold Weapons [for L2J Frozen] L2Gold Weapons [for L2J Frozen] Includes: Client: decrypted itemname.dat, weapongrp.dat Server: stats XML file, SQL file. VirusTotal Link: https://www.virustotal.com/#/file/a8142e733cc61af7cf81bdf6b918fd4420f613a33dfc6d2a7202b8216a03c5ba/detection Submitter wongerlt Submitted 07/03/2018 Category Equipments
  9. very good guide:
  10. change ur project encode to utf-8.
  11. i not remember how write in acis, maybe L2Rebirth not L2RebirthInstance, without Instance word
  12. create or change one of exist npc, type "L2RebirthInstance" then spawn
  13. config/events.properties
  14. https://mega.nz/#!rNMyVQID!r3_5tU_BeLgyf-kt48Aztzn1ztu1IbHq_7hPzeZgRmI
  15. u can find on google keyword "trance rebirth manager" in this forum i can't find trance shares, maybe it deleted.
  16. eh shitty thing...
  17. Hello, Maybe posible to see what must be in each parametres in function. Example: ?DrawTextToCanvas@UCanvas@@UAEKHHKPBGKKKMHW4L2FontType@@HHKHHHPAV?$TArray@PAVFL2ColorFontInfo@@@@GW4EFontExceptionType@@H@Z public: virtual unsigned long __thiscall UCanvas::DrawTextToCanvas(int,int,unsigned long,unsigned short const *,unsigned long,unsigned long,unsigned long,float,int,enum L2FontType,int,int,unsigned long,int,int,int,class TArray<class FL2ColorFontInfo *> *,unsigned short,enum EFontExceptionType,int) with any pe editor only can see parametres types but what mean each param? now with this example i want draw text on client, its interlude client.
  18. https://mega.nz/#!PQU2BYpb!OIwb6bN6G51LbAN4nypb9ONHNW4FSqpEW58roNL16Fo its work on interlude, just need to clean code, because code have unused functions and etc. And its have one problem, you get critical error on Olympiad Monument hero list table. Visutal Studio 2010.
  19. i got working rguard dsetup.dll source for Interlude client.
  20. just remove -h from action url.
  21. and i do it, but how i make mistake with calculator , idk :D Thanks now work.
  22. fak is hard to understand for me :D Example im entering clan hall zone. character.setInsideZone(L2Character.ZONE_CLANHALL, true); and clan hall is in town. character.setInsideZone(L2Character.ZONE_PEACE, true); now by checking in what zones im are result is: ZONE_PEACE, ZONE_CLANHALL, ZONE_MULTIFUNCTION, ZONE_GRAND (why this zones are in list?)
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock