Jump to content

Guild Alchemist Melting


Recommended Posts

Hi again DEV'S.

I have a little problem. Since i have 4 inventory, when i try to melt some ore at the guild alchemist, i cannot select any stone from the 3-4 inventory page. From the 1-2 it is fine. Also, if someone could tell me, where can i change the useable stones for melting, would be a big help. I'd like to allow players to use +3 stones for melting.

Thank you and sorry for my english.

Link to comment
Share on other sites

  • Active+ Member

For inventory problem:

## uiselectitem.py
## Search:
		for i in xrange(player.INVENTORY_PAGE_SIZE*2):
## Replace with:
		for i in xrange(player.INVENTORY_PAGE_SIZE * player.INVENTORY_PAGE_COUNT):

For +3 stones:

-- guild_building_melt.quest
-- Search:
	if item.vnum < 28000 or item.vnum >= 28300 then
-- Replace with:
	if item.vnum < 28000 or item.vnum >= 28400 then

 

  • Love 4
Link to comment
Share on other sites

Thank you very mutch. For the +3 stones i had to edit something else in the uiselectitem.py

Quote

            itemGrade = player.GetItemGrade(slotNumber)
            if itemGrade > 2:
                continue

The 2 should be 3, because the quest just check if the stone is a valid one or not. Thank you again.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now

Announcements



×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / 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.