Jump to content

How can I block doing shop with GM?


Recommended Posts

unpack root and open game.py

search 

Spoiler

def __PutItem(selfattachedTypeattachedItemIndexattachedItemSlotPosattachedItemCountdstChrID):

add under it

Spoiler

        # GM_DISABLE_ITEM_SEND
        char = player.GetMainCharacterName()
        GMMark= "["
        if char >= GMMark:
            chat.AppendChat(chat.CHAT_TYPE_INFO, locale.SEND_ITEM_FAILURE_GM)
            return
        # END_OF_GM_DISABLE_ITEM_SEND 

then go to locale_game.txt and add

Spoiler
SEND_ITEM_FAILURE_GM    GM can't trade

:)

  • Love 1
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.