Skip to content

junssekut/saraItemDatabase

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

saraItemDatabase


ItemDatabase v4.18

Growtopia decoded item database via items.dat, created with modified version of GrowtopiaNoobs' items.dat decoder. Only available to use it on LUA programming language. If you need help implementing this, feels free to dm me at discord junssekut#4964 or join my discord server.

How To Use

Add this code inside your script (online fetch):

    --- Fetch the item database.
    local ItemDatabase = assert(load(request('GET', 'https://raw.githubusercontent.com/junssekut/saraItemDatabase/main/ItemDatabase.lua'))())

    --- Get item name from item id.
    ItemDatabase[4584] --- Pepper Tree
    ItemDatabase[4585] --- Pepper Tree Seed

Add this code inside your script if you want it offline or locally:

    --- Replace 'ItemDatabase' with the name of your database file, of course you need 
    --- to download the file first and place it in the same folder as Pandora located.
    local ItemDatabase = require('ItemDatabase')

    --- Get item name from item id.
    ItemDatabase[4584] --- Pepper Tree
    ItemDatabase[4585] --- Pepper Tree Seed