how I add level function?
where install?
how I add level function?
where install?
Not work...
Its the file..
Hello everyone. I installed this itemshop " Bitte melden Sie sich an, um diesen Link zu sehen. " but I got this error:
1208 23:02:23114 :: Traceback (most recent call last):
1208 23:02:23114 :: File "game.py", line 2342, in BINARY_ServerCommand_Run
1208 23:02:23115 :: File "stringCommander.py", line 63, in Run
1208 23:02:23115 :: File "stringCommander.py", line 31, in __call__
1208 23:02:23115 :: File "stringCommander.py", line 20, in __call__
1208 23:02:23116 :: File "uiItemShop.py", line 118, in SetCoins
1208 23:02:23116 :: AttributeError
1208 23:02:23116 :: :
1208 23:02:23116 :: 'NoneType' object has no attribute 'SetText'
1208 23:02:23116 ::
1208 23:02:23116 :: Unknown Server Command SetItemShopCoins 800 | SetItemShopCoins
Someone can help me?
Good afternoon friends. I needed your help. When I implement an item + random bonus (100 magic_pct), it should turn yellow but it doesn't happen and it doesn't even add the random bonus, does anyone know how to fix it?
Bitte melden Sie sich an, um diesen Link zu sehen.
Bitte melden Sie sich an, um diesen Link zu sehen.
how I add level function?
I have this error, supposedly a simple window should appear, like the one I am going to publish to separate items, but one appears with the symbol of yang and wons, can anyone fix it? Thanks.
Correct:
Bitte melden Sie sich an, um diesen Link zu sehen.
Error:
Bitte melden Sie sich an, um diesen Link zu sehen.
Alles anzeigenhow do i fix it? when I try to refine the render target appears
Bitte melden Sie sich an, um diesen Link zu sehen.In uitooltip.py you have added an additional parameter to def AddItemData, your def probably looks something like this
def AddItemData(self, itemVnum, metinSlot, attrSlot = 0, flags = 0, unbindTime = 0, preview = 1):
I had the same issue but was able to resolve it by doing the following:
Alles anzeigenPython: uiattachmetin.py
fixed bro, thanks
Alles anzeigencomo faço para corrigir isso? quando tento refinar, o destino de renderização aparece
Bitte melden Sie sich an, um diesen Link zu sehen.Em uitooltip.py você adicionou um parâmetro adicional a [tt] def AddItemData [/ tt], seu def provavelmente se parece com isto
[tt] def AddItemData (self, itemVnum, metinSlot, attrSlot = 0, flags = 0, unbindTime = 0, preview = 1): [/ tt]
Tive o mesmo problema, mas consegui resolvê-lo fazendo o seguinte:
Alles anzeigenPython: uiattachmetin.py
- ##Pesquisa
- self.oldToolTip.AddItemData
- ##Substituir
- ## Explicação do parâmetro
- ## 1. itemVnum
- ## 2. metinSlot
- ## 3. attrslot (0 padrão)
- ## 4. sinalizadores (0 padrão)
- ## 5. visualização (1 padrão)
- self.oldToolTip.AddItemData (itemIndex, metinSlot, 0, 0, 0, 0)
- ## O mesmo para
- self.newToolTip.AddItemData
for me dont work
but yes, I have this function def AddItemData (self, itemVnum, metinSlot, attrSlot = 0, bandeiras = 0, unbindTime = 0, preview = 1):
Bitte melden Sie sich an, um diesen Link zu sehen.
Basically I installed the render target system, everything works correctly, but when I try to refine some equipment, from +1 to +2 etc. etc, the render target appears over what I'm going to refine.
how do i fix it? when I try to refine the render target appears
Bitte melden Sie sich an, um diesen Link zu sehen.
I need to fix this. I don't have stones but there are slots there.
Bitte melden Sie sich an, um diesen Link zu sehen.
Basically if I click on an item with a bonus it shows the info, if I click on an item without a bonus it doesn't show anything.
And in addition, it shows 3 stone slots without me having stones. Can help?
Errors:
Bitte melden Sie sich an, um diesen Link zu sehen.
Bitte melden Sie sich an, um diesen Link zu sehen.
My class:
class HyperlinkItemToolTip(ItemToolTip):
def __init__(self):
ItemToolTip.__init__(self, isPickable=True)
def SetHyperlinkItem(self, tokens):
minTokenCount = 3 + player.METIN_SOCKET_MAX_NUM
if app.ENABLE_TRANSMUTATION_SYSTEM:
minTokenCount += 1
maxTokenCount = minTokenCount + 2 * player.ATTRIBUTE_SLOT_MAX_NUM
if tokens and len(tokens) >= minTokenCount and len(tokens) <= maxTokenCount:
head, vnum, flag = tokens[:3]
itemVnum = int(vnum, 16)
if app.ENABLE_EXTENDED_SOCKET:
metinSlot = [int(metin, 16) for metin in tokens[3:8]]
else:
metinSlot = [int(metin, 16) for metin in tokens[3:6]]
transmutation = 0
if app.ENABLE_TRANSMUTATION_SYSTEM:
cnv = [int(cnv, 16) for cnv in tokens[6:7]]
rests = tokens[7:]
else:
rests = tokens[6:]
if rests:
attrSlot = []
rests.reverse()
while rests:
key = int(rests.pop(), 16)
if rests:
val = int(rests.pop())
attrSlot.append((key, val))
attrSlot += [(0, 0)] * (player.ATTRIBUTE_SLOT_MAX_NUM - len(attrSlot))
else:
attrSlot = [(0, 0)] * player.ATTRIBUTE_SLOT_MAX_NUM
self.ClearToolTip()
if app.ENABLE_TRANSMUTATION_SYSTEM:
if not transmutation:
self.AddItemData(itemVnum, metinSlot, attrSlot)
else:
self.AddItemData(itemVnum, metinSlot, attrSlot, 0, player.INVENTORY, -1, transmutation)
else:
self.AddItemData(itemVnum, metinSlot, attrSlot)
ItemToolTip.OnUpdate(self)
My Tooltip:
Bitte melden Sie sich an, um diesen Link zu sehen.
I added the option to destroy, but when I try to destroy alchemy it just does nothing. Can help?
When I click on the stones they simply start to remove from the right side, instead of removing the one I clicked, can you fix it?
Bitte melden Sie sich an, um diesen Link zu sehen.
Alles anzeigenCheck at:
def AddItemData
You have:
Fixed bro, thanks.
But I have other problem. I added the option to destroy, but when I try to destroy alchemy it just does nothing. Can you help?
The bonuses of my alchemy aren't showing. Can someone help me?
Bitte melden Sie sich an, um diesen Link zu sehen.
Hello, I tried to add the offline store system, but I have problems. He appears to put the time, the name, and the item, but he takes the money from me and the store doesn't create it. Syserr is error free. Can someone help me solve it?
Há algo errado no uiscript com o estilo (anexar)
[tt] "estilo": ("anexar",), [/ tt]
thank you very much
I got these errors after installing the mailbox system ... does anyone know how to fix it?
1022 01:02:18100 :: Unknown window flag a
1022 01:02:18100 :: Unknown window flag t
1022 01:02:18100 :: Unknown window flag t
1022 01:02:18100 :: Unknown window flag a
1022 01:02:18100 :: Unknown window flag c
1022 01:02:18100 :: Unknown window flag h