Advertisement
Guest User

Untitled

a guest
Jan 17th, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.88 KB | None | 0 0
  1. label special:
  2.     call screen special
  3.     screen special:                        
  4.         tag test
  5.         modal True
  6.         imagemap:
  7.             ground "special_fon"
  8.             idle "button_special_idle"
  9.             hover "button_special_hover"
  10.             text "Сила:[s]" xpos 1 ypos 0.1
  11.            
  12.             hotspot(426,382,45,85) action (SetVariable('s', s+1, 10), SetVariable('points', points-1), Jump(Check_stats)) #s
  13. label Check_stats:
  14.     init python:
  15.         if points > 0:
  16.             if s > 10:          #Этот блок ифов для того, чтобы мужики не ставили статы больше 10
  17.                 s = 10
  18.                 points += 1
  19.         if s < 1:          #Этот блок ифов для того, чтобы мужики не ставили статы в отрицательные числа
  20.             s = 1
  21.             points -= 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement