Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Виджет на основе оригинального фильтра с отслеживанием прогресса с девочками. 7дл-версия отличается наличием счётчика кармы и лп для Мику (в оригинале не было, так как в оригинале рута Мику нет)
- Установка:
- 1. Качаете файл [b][url=https://drive.google.com/file/d/0BwAhLCg03AtudnJ2UG5mVXVuNDg/view?usp=sharing]https://drive.google.com/file/d/0BwAhLCg03AtudnJ2UG5mVXVuNDg/view?usp=sharing[/url][/b]
- 2. Перемещаете или удаляете виджет-файл по адресу game\filters_other\
- 3. Скидываете скачанный файл по адресу game\filters_other\
- 4. В настройках фильтров выбираете виджет 7дл
- Для тех, кому лень заморачиваться с копированием, исходный код:
- [code]
- init:
- $ filters["widget__girls_progress"] = u"Отображение очков отношений с девочками"
- python early:
- def widget__girls_progress():
- def editoverlay():
- ui.button(clicked=None, xpos=1.0, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %d" % ("Прогресс со Славей", lp_sl), style="button_text", size=14)
- ui.button(clicked=None, xpos=0.85, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %d" % ("Прогресс с Леной", lp_un), style="button_text", size=14)
- ui.button(clicked=None, xpos=0.70, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %d" % ("Прогресс с Алисой", lp_dv), style="button_text", size=14)
- ui.button(clicked=None, xpos=0.55, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %d" % ("Прогресс с Мику", lp_mi), style="button_text", size=14)
- ui.button(clicked=None, xpos=0.40, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %d" % ("Прогресс с Ульяной", lp_us), style="button_text", size=14)
- ui.button(clicked=None, xpos=0.25, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %s" % ("Роль", plthr), style="button_text", size=14)
- ui.button(clicked=None, xpos=0.0, xanchor=0.0, ypos=2, xpadding=6, xminimum=200)
- ui.text("%s: %d" % ("Карма", karma), style="button_text", size=14)
- config.overlay_functions.append(editoverlay)
- [/code]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement