Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by gzuz

  1. gzuz

    PT Sub servers

    write a server application to sync the bless castle file from server to server, or create a symlink to the file on the 2 sub servers pointing back to main.
  2. gzuz

    [Release] PT Source 2012 (Visual Studio 2013) Fixed

    Have you checked your NPC settings to make sure that NPC is set as a shop?
  3. gzuz

    [Release] PT Source 2012 (Visual Studio 2013) Fixed

    Its not that bad. I have already managed to reduce bugs in it massively. Runs better than official server and client already. Am i right in thinking exp table checksum is calculated by the sum of all items within?
  4. gzuz

    [Release] PT Source 2012 (Visual Studio 2013) Fixed

    Any idea why i cant level above 99 with this source code? Ive added levels in leveltable up to 141
  5. gzuz

    PT encryption Protocol

    Hi Sheen, The error only happens when you have no characters in your account, however this is an issue as it show the exact location on disk of your server files. Thanks, Gzuz
  6. gzuz

    PT encryption Protocol

    Im not a player. I just checked out your server to see what you had going on.
  7. gzuz

    PT encryption Protocol

    Thanks for segments! I think i will be fine, I code TCP/IP Servers that read/write to DB for a living.... ps. i suggest you modify your php code. Put your file_get_contents within a try statement. Warning: file_get_contents(C:\Work\\DataServer\userinfo\**\******.dat): failed to open...
  8. gzuz

    PT encryption Protocol

    Can anyone provide the encryption method used on the PT packets? I am looking specifically for information on how to decrypt the package back to "english". The source coude released here for a server is massively inefficient. Id like to write my own, but i need to know the packet structure...
  9. gzuz

    Donation Shop

    <form target="_new" method="post" action="https://www.YourDomain.com/Path/ipn.Aspx"> <input type="hidden" name="SomePayPalVar" value="SomeValue1"/> <input type="hidden" name="SomeOtherPPVar" value="SomeValue2"/> <!-- code for other variables to be tested ... --> <input type="submit"/>...
  10. gzuz

    Donation Shop

    Paypal sends an HTTP post to a specified web url when payment is completed.This is specified by the code sending that detail when the user clicks the link to paypal. Post returns to an aspx page which then adds the coins to the users account based on post information. Simple. See IPN.aspx.vb...
  11. gzuz

    Donation Shop

    It has ipn
  12. gzuz

    Did someone say priston tale.... In direct x 11...

    You must be registered for see element. You must be registered for see element. You must be registered for see element. You must be registered for see element. Work in progress...
  13. gzuz

    Donation Shop

    automatic. If the person who purchased the coins from item shop is verified by the paypal account - ie. have they purchased before, it will auto credit the coins. If they have not purchased them before they will have to wait on paypal owner accepting and associating with that paypal account...
  14. gzuz

    Donation Shop

    No point in me sitting on this anymore... I made this for magicpt when i was working with them... but it never got used Open each .aspx.vb file and change connection string variables Open default.aspx.vb and search for "baris" change the paypal email to your own. Open web.config and change...
  15. gzuz

    The login packet

    Private Sub Decrypt(ByVal data() As Byte) Dim Key As Byte = 100 Dim array As Byte() = New Byte(data.Length - 1) {} Dim CRC As UInteger = (BitConverter.ToUInt32(data, &H4)) And &H80010000UI MsgBox(CRC) If CRC <> &H80010000UI Then Return...
Back
Top