Advertisement
Guest User

Untitled

a guest
May 31st, 2015
679
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. #Привет, юный падаван. Я - виджет отношений с девочками в Cамом Лучшем Моде вселенной.
  2. #Скопируй мой код в текстовой файлик и сохрани его с расширением .rpy в папку c летом: game/filters_other
  3. #Я работаю только для лета версии 1.1, для версии 1.2 качай стим, я туда встроен.
  4. #
  5. #
  6. #
  7. #
  8. init:
  9. $ filters["widget__girls_progress"] = u"Отображение очков отношений с девочками"
  10.  
  11. python early:
  12. def widget__girls_progress():
  13. def editoverlay():
  14. ui.button(clicked=None, xpos=1.0, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
  15. ui.text("%s: %d" % ("Прогресс со Славей", lp_sl), style="button_text", size=14)
  16. ui.button(clicked=None, xpos=0.85, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
  17. ui.text("%s: %d" % ("Прогресс с Леной", lp_un), style="button_text", size=14)
  18. ui.button(clicked=None, xpos=0.70, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
  19. ui.text("%s: %d" % ("Прогресс с Алисой", lp_dv), style="button_text", size=14)
  20. ui.button(clicked=None, xpos=0.55, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
  21. ui.text("%s: %d" % ("Прогресс с Мику", lp_mi), style="button_text", size=14)
  22. ui.button(clicked=None, xpos=0.40, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
  23. ui.text("%s: %d" % ("Прогресс с Ульяной", lp_us), style="button_text", size=14)
  24. ui.button(clicked=None, xpos=0.25, xanchor=1.0, ypos=2, xpadding=6, xminimum=200)
  25. ui.text("%s: %s" % ("Роль", plthr), style="button_text", size=14)
  26. ui.button(clicked=None, xpos=0.0, xanchor=0.0, ypos=2, xpadding=6, xminimum=200)
  27. ui.text("%s: %d" % ("Карма", karma), style="button_text", size=14)
  28. config.overlay_functions.append(editoverlay)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement