Всем доброго здравия! У меня возникла проблема (опять), с кастомным экраном (опять X2). Я создаю игру на подобии RPG, понимаю, Ren'Py не лучший вариант для этого, но других движков я пока не изучал х).
Проблема возникла с экраном инвентаря. Возникающая ошибка: NameError: Name 'name' is not defined.
Вопрос, можно ли как-то взять переменную "name" из script.rpy? У меня эта переменная берет начало в начале игры. Я хочу вставить эту переменную, для того чтобы на экране инвентаря было имя персонажа.
Вот код экрана: (P.s. заранее благодарю всех!)
screen inventory():
tag menu
default currenthp = 100 #comment in realise
default hpmax = 100 #comment in realise
default currentlvl = 0 #comment in realise
default currentarmor = 0 #comment in realise
default tonextlvl = 27203 #comment in realise
default money = 0 #comment in realise
add "gui/inventory/inventory_menu.png"
imagebutton auto "gui/inventory/return_%s.png" xpos 0 ypos 0 focus_mask True action ShowMenu("main_menu")
imagebutton auto "gui/inventory/armor_inv_%s.png" xpos 0 ypos 0 focus_mask True action NullAction()
imagebutton auto "gui/inventory/eqstuff1_inv_%s.png" xpos 0 ypos 0 focus_mask True action NullAction()
imagebutton auto "gui/inventory/eqstuff2_inv_%s.png" xpos 0 ypos 0 focus_mask True action NullAction()
imagebutton auto "gui/inventory/eqstuff3_inv_%s.png" xpos 0 ypos 0 focus_mask True action NullAction()
imagebutton auto "gui/inventory/weapon_inv_%s.png" xpos 0 ypos 0 focus_mask True action NullAction()
frame:
xpos 575 ypos 360 xysize(1316,684)
viewport:
mousewheel True
vbox:
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
text "smth"
text "stick'n'shit"
hbox: # hp
xpos 112 ypos 800
spacing 10
text "{color=#000000}[currenthp]/[hpmax]{/color}":
size 50
hbox: # lvl
xpos 1025 ypos 120
text "{color=#000000}[currentlvl]{/color}":
size 50
hbox: # to next lvl
xpos 1320 ypos 140
text "{color=#000000} [tonextlvl]EXP{/color}":
size 20
hbox: # name
xpos 1086 ypos 50
text "{color=#000000}[name]{/color}"
hbox: #armor
xpos 190 ypos 870
text "{color=#000000}[currentarmor]{/color}"
hbox: #moneh
xpos 305 ypos 940
text "{color=#000000}[money]{/color}"