Isto é uma pré-visualização de um tema em Hitskin.com
Instalar o tema • Voltar para a ficha do tema
Correção - Label do dinheiro
Página 1 de 1
Correção - Label do dinheiro
Descrição
A lblGold só mostra o seu dineheiro quando o item do tipo "Currency" é o número 1.
Client~Side
modDirectDraw7
Procure por:
- Código:
' Check if it's gold, and update the label
If GetPlayerInvItemNum(MyIndex, i) = 1 Then '1 = gold :P
frmMain.lblGold.Caption = Format$(Amount, "#,###,###,###") & "g"
End If
Mude para:
- Código:
' Check if it's gold, and update the label
If Item(GetPlayerInvItemNum(MyIndex, i)).Type = ITEM_TYPE_CURRENCY = 1 Then
frmMain.lblGold.Caption = Format$(Amount, "#,###,###,###") & "g"
End If
Procure por:
- Código:
' Check if it's gold, and update the label
If GetPlayerInvItemNum(MyIndex, i) = 1 Then '1 = gold :P
frmMain.lblGold.Caption = Format$(Amount, "#,###,###,###") & "g"
End If
Mude para:
- Código:
' Check if it's gold, and update the label
If Item(GetPlayerInvItemNum(MyIndex, i)).Type = ITEM_TYPE_CURRENCY = 1 Then
frmMain.lblGold.Caption = Format$(Amount, "#,###,###,###") & "g"
End If
Créditos
Ricardo
Ricardo
Ricardo- Ocasional
- Mensagens : 162
Créditos : 71
Ficha do personagem
Nível: 1
Experiência:
(0/0)
Vida:
(30/30)
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos
|
|