Jump to content

Search the Community

Showing results for tags 'Inventory'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Russian Section
    • Новости и объявления
    • Пиратия: Документация
    • Пиратия: Релизы
    • Пиратия: Разработка
    • Пиратия: Web
    • Пиратия: Помощь
    • Совместные проекты / набор команды
    • Доска объявлений
    • Программирование
    • Оффтопик
    • Корзина
  • English Section
    • News & Announcements
    • Guides
    • Releases
    • Development
    • Web
    • Questions & Help
    • Shared Projects / Team search
    • Paid services & Requests
    • Programming
    • Offtopic
    • Recycle bin
  • Portuguese Section
    • Dúvidas & Ajuda
  • Spanish Section
    • Preguntas y Ayuda
  • Servers
    • Russian servers
    • English servers

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Found 4 results

  1. With this PHP script you can search for different items in characters bag, temporary bag and bank. Requirements: PHP 7.0+; PDO support; sqlsrv driver for PDO. How to install and use: 1) Put the script to your web server working folder, usually it named htdocs. 2) Open index.php and configure it; First of all, fill the data to connect to the MSSQL server: // MSSQL Settings $db_host = ''; $db_user = ''; $db_pass = ''; $db_name = 'GameDB'; Then enter the access key. It is needed to access the script from the web browser. // Secret key $access_key = 'E10ADC3949BA59ABBE56E057F20F883E'; Fill the list of items you need to search for: // List of items to search for // ID, Name, Icon $items = array( // new Item(Item_ID, 'Item_Name', 'Item_Icon'), new Item(1, 'Short sword', 'w0001'), new Item(2, 'Long sword', 'w0002'), new Item(863, 'Gem of Rage', 'n1182'), new Item(855, 'Fairy Coin', 'n1482'), new Item(1847, 'Apple', 'n0275') ); That's all! 3) Run the script in the your web browser and you will see the results of the search. http://localhost/search_items/index.php The script is based on the PHP class for working with inventory from user Matt from forum serverdev.net. Icons of items are included. Do not use on a production server for security reasons. Download
  2. Does anyone know how to edit or change the value of the maximum gold in inventory? Capped at 2,000,000,000 (2 billion) Is it possible to increase it to maybe 5,000,000,000? (5 billion)
  3. Hi my friends. Im trying to get player inventory on website. It works well with the inventory decryption class i found in a pkosite. However there's a problem with forge params, example: item[8] = "-1270932251"; // this refers to the item forge params (shoes + 14) Do someone know how to decrypt this? (Note: its note the same as forgeparams in lua function altough it has the same length "3024035045")
  4. Locking and Unlocking inventory. to lock the inventory: function LockKitbag(cha) local packet = GetPacket() WriteCmd(packet, 553) WriteByte(packet, 1) SendPacket(cha, packet) end to unlock the inventory: function UnlockKitbag(cha) local packet = GetPacket() WriteCmd(packet, 553) WriteByte(packet, 0) SendPacket(cha, packet) end Usage: LockKitbag(role) UnlockKitbag(role) @GustavoHMA @DangThao
×
×
  • Create New...