-
Activity
-
5
-
0
Looking for Someone to create the queries etc for armors and weapons
Hello I am looking for someone who will create the queries from the ground up and item proto etc everything required to implement a few armor and weapon sets for my server such as these - https://imgur.com/a/sUwencb Paid service obviously Contact me on discord for more info - whait#7061 -
13
Official Private Shop Search
From where get this Cheque-System that are used in this system -
944
[40250] Reference Serverfile + Client + Src [15 Available Languages]
Hi tmp4, I was trying to increase the pull range by editing FuncAggregateMonster. But it seems that there is something other than the DISTANCE_APPROX check limiting the max range. struct FuncAggregateMonster { LPCHARACTER m_ch; FuncAggregateMonster(LPCHARACTER ch) { m_ch = ch; } void operator()(LPENTITY ent) { if (ent->IsType(ENTITY_CHARACTER)) { LPCHARACTER ch = (LPCHARACTER) ent; if (ch->IsPC()) return; if (!ch->IsMonster()) return; if (ch->GetVictim()) return; if (DISTANCE_APPROX(ch->GetX() - m_ch->GetX(), ch->GetY() - m_ch->GetY()) < 20000) if (ch->CanBeginFight()) { ch->AddAffect(AFFECT_MOV_SPEED, POINT_MOV_SPEED, 700, AFF_MOV_SPEED_POTION, 500, 0, true); ch->BeginFight(m_ch); } } } }; I added a movementspeed Affect and got very weird behaviour. The movementspeed bonus is applied to mobs way further than the "standard" pull range, yet no mobs outside of the standard pull range get aggressive towards my character. Do you know what's causing this? EDIT: Oh and I am posting this here, because the same code snipped works on other serverfiles. -
79
GUI Teleport System
Working With press button, but how can i add under indevtory button? -
0
inventory slot marking system cant compile
Hey guys! As i have mentioned in the title i have problems with compiling client src for inventory slot marking system. Server src is fine but in client src i get errorr that arg4 is not member of class exchange_packet... where can i add the member ? -
8
Inventory Bug
syserr is empty.. refreshbagslot I have it like this def SetInventoryPage(self, page): self.inventoryTab[self.inventoryPageIndex].SetUp() self.inventoryPageIndex = page self.inventoryTab[self.inventoryPageIndex].Down() self.RefreshBagSlotWindow() and def RefreshBagSlotWindow(self): getItemVNum=player.GetItemIndex getItemCount=player.GetItemCount setItemVNum=self.wndItem.SetItemSlot for i in xrange(self.wndItem.GetSlotCount()): self.wndItem.DeactivateSlot(i) for i in xrange(player.INVENTORY_PAGE_SIZE): slotNumber = self.__InventoryLocalSlotPosToGlobalSlotPos(i) itemCount = getItemCount(slotNumber) # itemCount == 0이면 소켓을 비운다. if 0 == itemCount: self.wndItem.ClearSlot(i) continue elif 1 == itemCount: itemCount = 0 itemVnum = getItemVNum(slotNumber) setItemVNum(i, itemVnum, itemCount) ## 자동물약 (HP: #72723 ~ #72726, SP: #72727 ~ #72730) 특수처리 - 아이템인데도 슬롯에 활성화/비활성화 표시를 위한 작업임 - [hyo] if constInfo.IS_AUTO_POTION(itemVnum): # metinSocket - [0] : 활성화 여부, [1] : 사용한 양, [2] : 최대 용량 metinSocket = [player.GetItemMetinSocket(slotNumber, j) for j in xrange(player.METIN_SOCKET_MAX_NUM)] if slotNumber >= player.INVENTORY_PAGE_SIZE*self.inventoryPageIndex: slotNumber -= player.INVENTORY_PAGE_SIZE*self.inventoryPageIndex isActivated = 0 != metinSocket[0] if isActivated: self.wndItem.ActivateSlot(slotNumber) potionType = 0; if constInfo.IS_AUTO_POTION_HP(itemVnum): potionType = player.AUTO_POTION_TYPE_HP elif constInfo.IS_AUTO_POTION_SP(itemVnum): potionType = player.AUTO_POTION_TYPE_SP usedAmount = int(metinSocket[1]) totalAmount = int(metinSocket[2]) player.SetAutoPotionInfo(potionType, isActivated, (totalAmount - usedAmount), totalAmount, self.__InventoryLocalSlotPosToGlobalSlotPos(i)) else: self.wndItem.DeactivateSlot(slotNumber) if app.WJ_ENABLE_TRADABLE_ICON: self.RefreshMarkSlots(i) self.__HighlightSlot_Refresh() self.wndItem.RefreshSlot() if self.wndBelt: self.wndBelt.RefreshSlot() if app.WJ_ENABLE_TRADABLE_ICON: map(lambda wnd:wnd.RefreshLockedSlot(), self.bindWnds) def RefreshEquipSlotWindow(self): getItemVNum=player.GetItemIndex getItemCount=player.GetItemCount setItemVNum=self.wndEquip.SetItemSlot for i in xrange(player.EQUIPMENT_PAGE_COUNT): slotNumber = player.EQUIPMENT_SLOT_START + i itemCount = getItemCount(slotNumber) if itemCount <= 1: itemCount = 0 setItemVNum(slotNumber, getItemVNum(slotNumber), itemCount) if app.ENABLE_NEW_EQUIPMENT_SYSTEM: for i in xrange(player.NEW_EQUIPMENT_SLOT_COUNT): slotNumber = player.NEW_EQUIPMENT_SLOT_START + i itemCount = getItemCount(slotNumber) if itemCount <= 1: itemCount = 0 setItemVNum(slotNumber, getItemVNum(slotNumber), itemCount) print "ENABLE_NEW_EQUIPMENT_SYSTEM", slotNumber, itemCount, getItemVNum(slotNumber) self.wndEquip.RefreshSlot() if self.wndCostume: self.wndCostume.RefreshCostumeSlot() def RefreshItemSlot(self): self.RefreshBagSlotWindow() self.RefreshEquipSlotWindow() -
63
Metin2 Dev - Changelogs
Duplicate posts (warns, topics, PM's...) are resolved 2FA re-enabled IP Board Upgrade IPS 4.7.0 Beta 10 (Dev Build)- 2
-
-
-
9
-
-
Recently Browsing
- No registered users viewing this page.
Question
DemOnJR 92
Hi.
I have installed this system:
Hidden Content
Give reaction to this post to see the hidden content.
The system is working if i'm trying to buy an item with exp or other items, but i get an error when i open the shop, this error:
Update: kkksQWB.png (296×423) (imgur.com)
Client Syserr:
0116 13:55:30713 :: Cannot find item by -32380 0116 13:55:31092 :: Cannot find item by -32380 0116 13:55:32445 :: Cannot find item by -32380 0116 13:55:32461 :: Cannot find item by -32380 0116 13:55:32494 :: Cannot find item by -32380 0116 13:55:32511 :: Cannot find item by -32380 0116 13:55:32527 :: Cannot find item by -32380 0116 13:55:33039 :: Cannot find item by -32380 0116 13:55:33055 :: Cannot find item by -32380 0116 13:55:34639 :: Cannot find item by -32380 0116 13:55:34655 :: Cannot find item by -32380 0116 13:55:34691 :: Cannot find item by -32380 0116 13:55:34705 :: Cannot find item by -32380 0116 13:55:34788 :: Cannot find item by -32380 0116 13:55:35036 :: Cannot find item by -32380 0116 13:55:35051 :: Cannot find item by -32380 0116 13:55:35068 :: Cannot find item by -32380 0116 13:58:59263 :: Cannot find item by -32380 0116 13:58:59279 :: Cannot find item by -32380
I'm using martysama.
Edited by DemOnJRLink to comment
Share on other sites
Top Posters For This Question
5
3
3
1
Popular Days
Jan 17
6
Jan 16
2
Jan 18
2
Jan 19
2
Top Posters For This Question
DemOnJR 5 posts
PetePeter 3 posts
TryHard 3 posts
Mali 1 post
Popular Days
Jan 17 2021
6 posts
Jan 16 2021
2 posts
Jan 18 2021
2 posts
Jan 19 2021
2 posts
Popular Posts
DemOnJR
Solved. Download the new version of Hidden Content Give reaction to this post to see the hidden content. @Mali61 has been updated it. It works on martysama too with some warnings but works.
DemOnJR
Hi. I have installed this system: Hidden Content Give reaction to this post to see the hidden content. from @Mali61 The system is working if i'm trying to buy an item with exp or other items, but i get an error when i open the shop, this error: Update: kkksQWB.png (296×423) (imgur.com) Client Syserr: I'm using martysama.
Mali
Don't bother other people. First of all, we know that the system is working properly. I've seen many people are using it. You guys are using martysama source. I don't have that src so I can't help you for that kind of things. Probably problem is with packets.
11 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now