Jump to content

Tasho

Banned
  • Posts

    358
  • Joined

  • Last visited

  • Days Won

    11
  • Feedback

    0%

Everything posted by Tasho

  1. thanks guys, ok then ... I will leave it like it is
  2. F1 F2 F3 F4 are openning when you put just the cursour on top of them ... I think its uselles to light them up. And it has 2 propertys, when you drag the cursor over the F1 image it shows you extra information and after it works like a glisant image. An the F` part is just for when you save the account, to auto connect when you press F1 etc. Hope that I explain the idea. Thanks for the advice.
  3. Hey, guys I was working on a new interface, and I wanted to know what do you think about this method of changing the channels.
  4. Ok, thanks for release but 470 lines is to ugly for this small thing, here is better and only in some lines: def __UseItem(self, slotIndex): itemVnum = player.GetItemIndex(slotIndex) item.SelectItem(itemVnum) itemCount = player.GetItemCount(slotIndex) inventoryMaxSlot = 45 * 2 if itemVnum == 50300 and itemCount > 1: for i in xrange(inventoryMaxSlot): if player.GetItemIndex(i) == 0: net.SendItemMovePacket(slotIndex, i, 1) self.__SendUseItemPacket(i) attachedCount = mouseModule.mouseController.GetAttachedItemCount() net.SendItemMovePacket(slotIndex, i, attachedCount) else: chat.AppendChat(chat.CHAT_TYPE_INFO, "Inventory is full, you need more space.") return else: self.__SendUseItemPacket(slotIndex) return
  5. Why you are resell some things what is not from you? Also you sell pet from luzzo etc. you just change something or repair some bugs. My question is: Why?
  6. First one you need to kill processes and after that to do reboot. For can make all very easy, just use command: cd /usr/home/game && sh close.sh && reboot Or you can make like this: Create a file with name reboot.sh in ../usr/home/game/ Put this in him: #!/bin/sh #If processes change their name, killall may not be able to match them correctly, so change "game" or "db" with your name, type "ps" or "top" for know. echo -e "Kill processes and reboot server ..." killall game && killall db && reboot And when you want to make a reboot just type command: sh reboot.sh
  7. The design was made by darkdev (designer name @lovekilz), he stopped with this long time ago, only coder php (mariuk3) is alive from this project. You can speak with him @Mariuk3 maybe he have some design for you. Good luck.
  8. No, is not. One friend speak with him and he say he leave metin2, and want to share something. Is him.
  9. (2.4) Content Don't post stuff other made and/or sell stuff others made. No posting (whether to sell or give away for free) anything that involves cheating or stealing from people's clients or servers. Wom2 do that since 2014 (3 years ago), and full code is already public, a lot a people have that, and also i have, works perfectly without "bugs", i can't post here because is not allowed, but again romanians guys try to make money from nothing. PS: I dont know why you create this topic, to show one system from 3 years ago from wom2 and say is your and you "rebuild"...you not code nothing here, works full what exist on public. Someone does not respect the rules.
  10. Very easy to make. Just make a copy of alignment via packet info and also you have full check on source client/server + python module and you can do all what you want with these functions.. And all return value row [name_row] from mysql player.player case ITEM_LOCK_INVENTORY: SetLockInventory(1); case ITEM_UNLCOCK_INVENTORY: SetLockInventory(0); #Python player.GetInventoryLocked() # Result current value from mysql #Client int CInstanceBase::GetInventoryLocked() { return m_iInventoryLocked; } PyObject * playerGetInventoryLocked(PyObject* poSelf, PyObject* poArgs) { CInstanceBase * ch = CPythonPlayer::Instance().NEW_GetMainActorPtr(); int iInventoryLocked = 0; if (ch) { iInventoryLocked = ch->GetInventoryLocked(); } return Py_BuildValue("i", iInventoryLocked); } #Server int CHARACTER::GetInventoryLocked() const { return m_iInventoryLocked; } void CHARACTER::SetLockInventory(int iAmount) { m_iInventoryLocked = iAmount; UpdatePacket(); } Anyway, good ideea.
  11. you can ask Rose (the stupid **** ) who gave you the interface to help you here is a idea : make it from 3 parts. You will have problems even with the chat.
  12. To grow it you need to fight monsters as far as I know.
  13. this is my gold limit : GOLD_MAX = 1000000000000001LL,how should I make it work?
  14. The first problem its not with only sash, but with all items.
  15. Hi devs, I have 2 problems with offlineshop, maybe some of you had this errors and maybe can point me in the direction of fixing them : 1.The first item when I create the offline shop npc is deleted and in mysql the vnum of that item goes to 0. [Hidden Content] 2.When i make a offline shop npc I get 2kkk gold from nothing. [Hidden Content]
  16. Do someone know how to resolv this problem? I added the sash, but dont know why It gives me this error.
  17. Does someone know how to change the color of the pet name, I started to make a function in the game binary something like IsStone, but didn't work. Any one else have, any idea how to do it?
  18. Hi there, I'm looking for a python loader but all that I found didn't work with python2.7 so I really apreciate if someone can pot one... or this one will be just fine: [Hidden Content]
  19. Hi guys, I was looking for a way to stop resteing the client every time I edit a .py file from root and I found this function in consolemodule: self.AddFunction("re", Console.ReloadDevel) def ReloadDevel(self): "ReloadDevel" import consoleModule import uiGuild import uiInventory import uiTaskbar import uiParty reload(uiGuild) self.Print("ReloadGuild") reload(uiInventory) self.Print("ReloadInventory") reload(uiTaskBar) self.Print("ReloadTask") My question is: how can I use this function?
  20. I think that none here will sell that, but you can talk with King sora for a design and for sure someone can code that.
  21. just use the same quest as before and edit the type of the item nothing more
×
×
  • 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.