Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/27/14 in all areas

  1. Hi! I don't know if it is a perfect solution, but it works fine for me. Open game/char_item.cpp and find this: if (false == CanUnequipNow(item2) || false == CanEquipNow(item1)) Replace to this: //if (false == CanUnequipNow(item2) || false == CanEquipNow(item1)) if (false == CanEquipNow(item1)) return false; if (item2->IsDragonSoul() && false == CanUnequipNow(item2)) return false; Then compile and run...
    6 points
  2. You can make your own forum or website. There you can post all Vanilla Core version`s without worries
    3 points
  3. There'll still be updates. I've managed to fix the drophack for example. But they won't be released here. The only reason I kept on this board was a agreement I've made. The other side didn't want to keep their words so now I'm gone. Maybe I'll find a place to distribute it in a safe environment for me. Stay tuned, I'll tell you if I've got new information.
    3 points
  4. You're describing WoM pretty much. We took the official gameplay, made it a bit easier, stripped it from some pay2win elements, and added a bunch of new features. It's not easy for a hard server to success, most players thinking will be "I might as well play official, at least it won't close". So besides making it hard, you have to add your own innovative content to avoid that feeling of "doing the same shit all over" players get on hard servers. Another point to consider is that MMORPG as a whole have changed and pure grinding is going out of fashion.
    2 points
  5. M2 Download Center Download Here ( Internal ) Hi, As requested by some users i have you a VM with FreeBSD 9.2 32bit, novaline source and pre installed Ports so you can compile the game. It was like 10 minutes of work to enter the commands so no thanks needed. Link: HerpDerp Login: root Pw: dev To compile the game: cd /usr/src/novaline/Srcs/Server/game/src gmake clean gmake -j20 If there are any Problems or questsions you can add me in Skype(l337-5p34k) or Message me here i'll always give you support. Kind regards TheGame €: There are no Serverfiles on this VM because i dont have test serverfiles. If someone have Serverfiles for me i'll implement them and upload an updated version of this VM. €: Updated Link: Thanks to Da'Real Pain
    1 point
  6. M2 Download Center Download Here ( Internal ) I go to release a simple system , to see the coins in the inventory. [Hidden Content] REMEMBER: localeInfo is from binary r28k locale is from binary r36k First, go to uiinventory.py and now search: self.wndMoneySlot = self.GetChild("Money_Slot") And down put: self.wndMds = self.GetChild("Mds") self.wndMdsSlot = self.GetChild("Mds_Slot") Now, search def Destroy(self): self.ClearDictionary() .... .... self.wndMoney = 0 self.wndMoneySlot = 0 And down put: self.wndMds = 0 self.wndMdsSlot = 0 Now, Search: def RefreshStatus(self): And change to: def RefreshStatus(self): money = player.GetElk() self.wndMoney.SetText(localeInfo.NumberToMoneyString(money)) import constInfo self.wndMds.SetText(str(constInfo.mds) + " Md's") And down Put: def OnUpdate(self): import constInfo self.wndMds.SetText(str(constInfo.mds) + " Md's") The uiinventory is finished, save and close, now go to locale/xx/ui/inventorywindow.py. Search: ## Print { "name":"Money_Slot", "type":"button", "x":-68, "y":28, "horizontal_align":"center", "vertical_align":"bottom", "default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub", "over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub", "down_image" : "d:/ymir work/ui/public/parameter_slot_05.sub", "children" : ( { "name":"Money_Icon", "type":"image", "x":-21, "y":2, "image":"d:/ymir work/ui/game/windows/money_icon.sub", }, { "name" : "Money", "type" : "text", "x" : 5, "y" : 3, "horizontal_align" : "right", "text_horizontal_align" : "right", "text" : "123456789", }, ), }, And Down Put: { "name":"Mds_Slot", "type":"button", "x":-68, "y":48, "horizontal_align":"center", "vertical_align":"bottom", "default_image" : "d:/ymir work/ui/public/parameter_slot_05.sub", "over_image" : "d:/ymir work/ui/public/parameter_slot_05.sub", "down_image" : "d:/ymir work/ui/public/parameter_slot_05.sub", "children" : ( { "name":"Mds_Icon", "type":"image", "x":-21, "y":2, "image":"d:/ymir work/ui/game/windows/money_icon.sub", }, { "name" : "Mds", "type" : "text", "x" : 5, "y" : 3, "horizontal_align" : "right", "text_horizontal_align" : "right", "text" : "123456789 Md's", }, ), }, Remember change the "x" and "y". Now, go to game.py in root. Search: def __ServerCommand_Build(self): serverCommandList={ And down put: #Carga Mds Start "Mds" : self.__Mds, #Carga Mds End and now, go to the end and put: def __Mds(self, coins): import constInfo constInfo.mds = int(coins) Save and close. Now go to constinfo.py and put mds = 0 And Here the quest: quest mds begin state start begin when login begin loop_timer("carga_mds", 10) end when carga_mds.timer begin local coins = mysql_query("SELECT coins from account.account WHERE id="..pc.get_account_id().." LIMIT 1;")[1][1] cmdchat("Mds "..coins) end end end This is my release in this forum. Sorry my bad english.. I'm Spanish.
    1 point
  7. execute got removed since it causes crashes when the quest you're calling doesn't exist. It's a work for 2.5, not 2.4.1 If you're brave enugh you may remove the return at the beginning of the function when you're working with IDA. But I don't recommend it.
    1 point
  8. Because textures must be in D:/ymir work.... This model hasn't textures in this way... You must edit it
    1 point
  9. Fixed ty galet <3
    1 point
  10. Navicat > Design Table > Copy value5 three time and rename the first socket0, the second socket1 the last socket2. And works.
    1 point
  11. 1 point
  12. Do you remember the name of the server you played? It may have been one of mine or one that I played on too. Yes, the name of the server was Newlongju i tink it was open betwen 2008-2009.
    1 point
  13. i can remember those days we loved metin2 because, was simple and very playable..
    1 point
  14. Can u explain me what is Putty? '-' Sorry my lack of knowledge. '-' #EDIT Nevermind, I know what it is.
    1 point
×
×
  • 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.