antiblock
Elveron
  • Chatbox

    You don't have permission to chat.
    Load More
  • 0
Sign in to follow this  
ƒtω.

Como Deixo Mais Largo As Janelas?

Question

Boas , 

 

Queria perguntar como posso aumentar a largura das janelas dos npcs...

Por exemplo a Vendedora Geral..

 

A Minha esta assim: http://prntscr.com/byd4l4

 

Queria deixar mais largo aquele retanglo

 

Cumpz !

 

Dou +1 a quem ajudar

Share this post


Link to post
Share on other sites

3 answers to this question

  • 0

Ora muito boa tarde,


antes de mais precisas de ter a source


 


Terás de fazer o seguinte, penso eu


 


src/client/UserInterface/packet.h




SHOP_HOST_ITEM_MAX_NUM = 40, -> SHOP_HOST_ITEM_MAX_NUM = 80,


 


src/Server/common/length.h




SHOP_HOST_ITEM_MAX_NUM = 40, -> SHOP_HOST_ITEM_MAX_NUM = 80,
SHOP_PRICELIST_MAX_NUM = 40, -> SHOP_PRICELIST_MAX_NUM = 80,


 


src/Server/game/shop.cpp




m_pGrid = M2_NEW CGrid(5, 9); -> m_pGrid = M2_NEW CGrid(10, 9);


 


shopdialog.py




import uiScriptLocale

window = {
"name" : "ShopDialog",
"x" : SCREEN_WIDTH - 400,
"y" : 10,
"style" : ("movable", "float",),
"width" : 184 + 160,
"height" : 328,
"children" :
(
{
"name" : "board",
"type" : "board",
"style" : ("attach",),
"x" : 0,
"y" : 0,
"width" : 184 + 160,
"height" : 328,
"children" :
(

## Title
{
"name" : "TitleBar",
"type" : "titlebar",
"style" : ("attach",),
"x" : 8,
"y" : 8,
"width" : 169 + 160,
"color" : "gray",
"children" :
(
{ "name":"TitleName", "type":"text", "x":84+80, "y":4, "text":uiScriptLocale.SHOP_TITLE, "text_horizontal_align":"center" },
),
},

## Item Slot
{
"name" : "ItemSlot",
"type" : "grid_table",
"x" : 12,
"y" : 34,
"start_index" : 0,
"x_count" : 10,
"y_count" : 8,
"x_step" : 32,
"y_step" : 32,
"image" : "d:/ymir work/ui/public/Slot_Base.sub",
},

## Buy
{
"name" : "BuyButton",
"type" : "toggle_button",
"x" : 21,
"y" : 295,
"width" : 61,
"height" : 21,
"text" : uiScriptLocale.SHOP_BUY,
"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
},

## Sell
{
"name" : "SellButton",
"type" : "toggle_button",
"x" : 104 + 160,
"y" : 295,
"width" : 61,
"height" : 21,
"text" : uiScriptLocale.SHOP_SELL,
"default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
"over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
"down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
},

## Close
{
"name" : "CloseButton",
"type" : "button",
"x" : 0,
"y" : 295,
"horizontal_align" : "center",
"text" : uiScriptLocale.PRIVATE_SHOP_CLOSE_BUTTON,
"default_image" : "d:/ymir work/ui/public/large_button_01.sub",
"over_image" : "d:/ymir work/ui/public/large_button_02.sub",
"down_image" : "d:/ymir work/ui/public/large_button_03.sub",
},
),
},
),
}


 


Com estas alterações a tua loja passará a ter 80 slots em vez de 40, ou seja, passará a ter o dobro do espaço!


Espero ter ajudado


 


Boa sorte


 


Cumprimentos,


@ƒяσтαz


Share this post


Link to post
Share on other sites
antiblock
diamwall
  • 0

Boas ,

 

Filezila? Fica onde :-:

 

src/client/UserInterface/packet.h

Share this post


Link to post
Share on other sites
  • 0

Boas ,

 

Filezila? Fica onde :-:

 

src/client/UserInterface/packet.h

 

 

Ora muito boa tarde,

antes de mais precisas de ter a source

Share this post


Link to post
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this