forked from metin2/client
47 lines
1016 B
Python
47 lines
1016 B
Python
import uiScriptLocale
|
|
|
|
window = {
|
|
"name" : "GuildWindow_MemberPage",
|
|
|
|
"x" : 8,
|
|
"y" : 30,
|
|
|
|
"width" : 360,
|
|
"height" : 298,
|
|
|
|
"children" :
|
|
(
|
|
## ScrollBar
|
|
{
|
|
"name" : "ScrollBar",
|
|
"type" : "scrollbar",
|
|
|
|
"x" : 341,
|
|
"y" : 20,
|
|
"scrollbar_type" : "normal",
|
|
"size" : 270,
|
|
},
|
|
|
|
## Grade
|
|
{
|
|
"name" : "IndexName", "type" : "text", "x" : 43, "y" : 8, "text" : uiScriptLocale.GUILD_MEMBER_NAME,
|
|
},
|
|
{
|
|
"name" : "IndexGrade", "type" : "text", "x" : 119, "y" : 8, "text" : uiScriptLocale.GUILD_MEMBER_RANK,
|
|
},
|
|
{
|
|
"name" : "IndexJob", "type" : "text", "x" : 177, "y" : 8, "text" : uiScriptLocale.GUILD_MEMBER_JOB,
|
|
},
|
|
{
|
|
"name" : "IndexLevel", "type" : "text", "x" : 217, "y" : 8, "text" : uiScriptLocale.GUILD_MEMBER_LEVEL,
|
|
},
|
|
{
|
|
"name" : "IndexOffer", "type" : "text", "x" : 251, "y" : 8, "text" : uiScriptLocale.GUILD_MEMBER_SPECIFIC_GRAVITY,
|
|
},
|
|
{
|
|
"name" : "IndexGeneral", "type" : "text", "x" : 304, "y" : 8, "text" : uiScriptLocale.GUILD_MEMBER_KNIGHT,
|
|
},
|
|
|
|
),
|
|
}
|