Jump to content

How to get SHOP position


Recommended Posts

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

add to cmd_general.cpp

ACMD(do_myshop_xyz)
{
    LPCHARACTER npc = CHARACTER_MANAGER::instance().Find(COfflineShopManager::instance().FindMyOfflineShop(ch->GetPlayerID()));
    if (npc)
    {
        if (npc->GetOfflineShopChannel() == g_bChannel)
        {
            long x = npc->GetX();
            long y = npc->GetY();
            ch->ChatPacket(5, "koordinat %ld %ld", x, y);
        }
    }
}


 

and game.py

add to commandlist 

"koordinat" : self.koordinat,



def koordinat(self, x, y):

chat.AppendChat(1, "%d %d" % (x,y))

 

Link to comment
Share on other sites

1 hour ago, meneleos said:

add to cmd_general.cpp


ACMD(do_myshop_xyz)
{
    LPCHARACTER npc = CHARACTER_MANAGER::instance().Find(COfflineShopManager::instance().FindMyOfflineShop(ch->GetPlayerID()));
    if (npc)
    {
        if (npc->GetOfflineShopChannel() == g_bChannel)
        {
            long x = npc->GetX();
            long y = npc->GetY();
            ch->ChatPacket(5, "koordinat %ld %ld", x, y);
        }
    }
}


 

and game.py

add to commandlist 


"koordinat" : self.koordinat,



def koordinat(self, x, y):

chat.AppendChat(1, "%d %d" % (x,y))

 

are you Turk ? what is koordinat :D

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.