- 1
-
Recently Browsing
No registered users viewing this page.
-
Activity
-
1
-
4
DirectX9 Wrapper for laptop's dedicated gpu
Yea, but they can play on a clean windows 7 if they just do a simple update. Or they can install visual c++ redistributable 2015 (or maybe newer didn't tested). You can specify this on client download page like i did. -
1
-
1
Making animated weapons
in 3dsmax you can animate objects by putting TimeStamps into the animation, its easier to view some Tutorials for it, in Short. you use The first position of your object in 3dsmax, And move the Timecurser around a bit, move the Object how you like and set the next Time stamp. thats it. with the Tool from Ricky92 you can import / export those mde"s i would recommend you to just watch how other MDE"s work and just rework those -
0
Skill leveling help?
ive Build new Skilllevel into my Client At level 20 https://i.gyazo.com/e0b970315912c7655b174ec2b35c1642.mp4 At Level 50 https://i.gyazo.com/72a10f58b47e2348c0be2bcc1558eb07.mp4 Sometimes i dont get a Buff at the Buff Skills and other Times it just give me Wrong Values ive edited the Skill_Power table in the locale.common in the same way as the locale.h in the Client what else do i have to do that it will be working? also i have in Total 80 level how do i set all Icons ontop each other / The slots like the Slot from Grandmaster -> -
14
-
14
GRAPHIC & ANIMATION & CODE | Pixarts - Game Development Studio
Logo | Webdesign | Animation - Aoki (The project does not have a full preview until the server starts) Logo | Webdesign | Animation - Vorion (The project does not have a full preview until the server starts) Logo | Webdesign - Northen Lights (The project does not have a full preview until the server starts) Logo | Webdesign | Animation - Metin2 Toplist (The project does not have a full preview until the server starts) -
4
DirectX9 Wrapper for laptop's dedicated gpu
Nop they need to update. But you know some people still using that shit windows. -
3
LeftRightReverse
You have them since years ago and you kept them in you pc?!! , do you know how Arabs suffer with adding any windows ?!!!! thx for releasing it anyways
-
Question
Syrex 0
i was add 4 Inventory Page
but Only one IV appeared and the second did not appear !!
it was showing this error
0615 08:38:14573 :: CMapOutdoor::Load - LoadMonsterAreaInfo ERROR 0615 08:38:28249 :: Traceback (most recent call last): 0615 08:38:28249 :: File "networkModule.py", line 247, in SetGamePhase 0615 08:38:28249 :: File "game.py", line 97, in __init__ 0615 08:38:28250 :: File "interfaceModule.py", line 285, in MakeInterface 0615 08:38:28250 :: File "interfaceModule.py", line 169, in __MakeWindows 0615 08:38:28250 :: File "uiInventory.py", line 262, in __init__ 0615 08:38:28251 :: File "uiInventory.py", line 401, in __LoadWindow 0615 08:38:28251 :: File "uiInventory.py", line 466, in SetInventoryPage 0615 08:38:28251 :: AttributeError 0615 08:38:28252 :: : 0615 08:38:28252 :: 'InventoryWindow' object has no attribute 'inventoryPageIndex' 0615 08:38:28252 ::
but i solved with
I have replaced
def SetInventoryPage(self, page):
self.inventoryTab[self.inventoryPageIndex].SetUp()
self.inventoryPageIndex = page
self.inventoryTab[self.inventoryPageIndex].Down()
self.RefreshBagSlotWindow()
for
def SetInventoryPage(self, page):
self.inventoryPageIndex = page
self.inventoryTab[0].SetUp()
self.inventoryTab[1].SetUp()
self.inventoryTab[2].SetUp()
self.inventoryTab[3].SetUp()
if len(self.inventoryTab) >=page:
self.inventoryTab
and Only one IV appeared and the second did not appear !!
what is the solve ?
.Down()
self.RefreshBagSlotWindow()
Link to post
2 answers to this question
Recommended Posts