mod_bratva_start.qsrc 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # mod_bratva_start
  2. ! bratva['stage'] = 0 - the branch is not open
  3. ! 1 - GG fucked in the park and dragged to the apartment
  4. ! 2 - 11 - GG fucked at the hut, with 11 a dialogue about joining opens
  5. ! 20 - gangsters agreed to accept GG as a gang, the further path has not yet been determined
  6. ! 50 - entered the path of the thief
  7. ! 100 - entered the studio path
  8. ! 200 - entered the killer path
  9. ! 255 - branch closed
  10. ! bratva['fail'] - counter of the wrong choice in the apartment, if 3 or more - closing the branch
  11. ! bratva['counter'] - event count per day - no more than 2
  12. ! bratva['documents'] -
  13. ! bratva['counter'] -
  14. *clr & cla
  15. '<center><img <<$set_imgh>> src="mod/Bratva/locations/city/north/bratva/02.jpg"></center>'
  16. 'Albert, he''s Al, bald tattooed leader of the bandits'
  17. act '<B>Move away</B>': gt $loc, $loc_arg
  18. !here you paint actions at home, chat to have sex and event starts
  19. if bratva['location'] = 0:
  20. if bratva['stage'] >= 20:
  21. act 'Chat' : gt 'bratva_events','razgovor1'
  22. if pcs_horny > 50: act 'Flirt' : gt 'bratva_events','razgovor2'
  23. end
  24. !exit
  25. !The conditions of the start of the event for training dexterity
  26. if bratva['thieffail'] = 2 and pcs_agil < 65 and bratva['eventthief3'] ! daystart: act'Go to the gym to train': gt 'bratva_thief','eventthief3'
  27. !The conditions of the start of the event for training strength and agility
  28. if bratva['sniper'] = 1 and bratva['eventsniper2'] ! daystart: act'Engage in the gym general physical training with Albert.': gt 'bratva_sniper','eventsniper2'
  29. !Starting conditions for the first event for training shots
  30. if bratva['sniper'] = 1 and bratva['sniper_trening'] = 0: act'Engage in the gym martial arts with Dimas.': gt 'bratva_sniper','eventsniper3'
  31. !Conditions of the start of the event for training accuracy
  32. if bratva['sniper'] = 1 and bratva['eventsniper4'] ! daystart: act'Go to the shooting range to work Gennady shoot a pistol.': gt 'bratva_sniper','eventsniper4'
  33. !Event start conditions for advanced accuracy training
  34. if bratva['sniper'] = 1 and bratva['eventsniper5'] ! daystart: act'Go learn to shoot a rifle.': gt 'bratva_sniper','eventsniper5'
  35. !The condition of the start of the event for advanced training shots
  36. if bratva['sniper_trening'] = 1 and bratva['eventsniper6'] ! daystart: act'Engage in the gym martial arts with Dimas.': gt 'bratva_sniper','eventsniper6'
  37. !here you paint actions when you are thumping, drinking, eating, chatting, having sex and starting events
  38. elseif bratva['location'] = 3:
  39. !conversation with the bandits in the studio
  40. if bratva['studio'] = 1 and studio['ofisdialog1'] ! daystart :act'Talk about the studio': gt 'bratva_studioQW','ofisdialog1'
  41. !conversation with the bandits in the office with a beauty of 60 and above
  42. if bratva['studio'] = 1 and hotcat >= 5 and studio['ofisdialog1'] ! daystart :act'Talk about yourself': gt 'bratva_studioQW','ofisdialog2'
  43. end
  44. --- mod_bratva_start ---------------------------------