123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- # bratva_pornstudio_init
- ! init
- ! porn studio
- ! 0-5 star improvements
- ! studio['room,0'] - film set
- ! studio['room,1'] - dressing room
- ! studio['room,2'] - office
- ! studio['room,3'] - recreation area
- ! studio['rating'] - a calculated rating of studio popularity with viewers
- ! studio['work_rating'] - the estimated popularity rating of the studio among actresses
- ! studio['init'] - check load base arrays
- ! studio['upgrade'] - studio under repair, 0-7
- ! studio['upgrade_room'] - room under repair
- ! studio['money'] - money in the studio account
- ! studio['money_month'] - current month profit
- ! studio['money_last_month'] - profit for the previous month
- ! studio['film_day'] - last filming day
- studio['room,0'] = 0
- studio['room,1'] = 0
- studio['room,2'] = 0
- studio['room,3'] = 0
- !---
- studio['film_day'] = 0
- studio['rating'] = 0
- studio['work_rating'] = 0
- studio['init'] = 1
- studio['upgrade'] = 0
- studio['upgrade_room'] = -1
- studio['money'] = 100000
- studio['money_month'] = 0
- studio['money_last_month'] = 0
- !---
- ! film genres, total 10
- $film_genre['0,name'] = 'solo'
- $film_genre['1,name'] = 'lesbo'
- $film_genre['2,name'] = 'sex'
- $film_genre['3,name'] = 'ffm/mmf'
- $film_genre['4,name'] = 'anal'
- $film_genre['5,name'] = 'dp'
- $film_genre['6,name'] = 'orgy'
- $film_genre['7,name'] = 'orgy dp'
- $film_genre['8,name'] = 'orgy dap'
- $film_genre['9,name'] = 'hard-orgy (dp,dap,tap)'
- !--
- ! movie titles depending on the genre
- $film_genre['0,filmname'] = 'Hot Pussy'
- $film_genre['1,filmname'] = 'Pink On Pink'
- $film_genre['2,filmname'] = 'Hardcore Vibes'
- $film_genre['3,filmname'] = 'The Young & The Beautiful'
- $film_genre['4,filmname'] = 'Butt Fuck Me'
- $film_genre['5,filmname'] = 'DP Mania'
- $film_genre['6,filmname'] = 'Teenage Gangbang Party'
- $film_genre['7,filmname'] = 'Teens Want Double'
- $film_genre['8,filmname'] = 'Hard Double Anal'
- $film_genre['9,filmname'] = 'Double Anal Festival'
- !--
- ! working indexes for numbers in a movie series
- $film_genre['0,index'] = 0
- $film_genre['1,index'] = 0
- $film_genre['2,index'] = 0
- $film_genre['3,index'] = 0
- $film_genre['4,index'] = 0
- $film_genre['5,index'] = 0
- $film_genre['6,index'] = 0
- $film_genre['7,index'] = 0
- $film_genre['8,index'] = 0
- $film_genre['9,index'] = 0
- !--
- ! actresses, a common array, at the same time a maximum of 10 actresses can work
- ! actress['0,name'] is a pseudonym for acrissa
- ! actress['0,rating'] - current popularity rating, 0-100
- ! actress['0,genres'] - categories of films in which the actress is willing to act, 0-9, if 5 - agrees to everything up to dp inclusive
- ! actress['0,age'] - age, 0-2, 0 - teen, 1 - teen / milf, 2 - milf
- ! actress['0,date'] - the date of the last shooting - the actress will be available at least after [category] +1 days (depending on the equipment of the recreation area)
- ! actress['0,last_film'] - id of the last movie made with actress
- ! actress['0,retire'] - Fired / Finished, 0/1
- ! actress id = 0 - yy
- $actress['0,name'] = 'Sveta'
- $actress['0,rating'] = 0
- $actress['0,genres'] = 9
- $actress['0,age'] = 0
- $actress['0,date'] = -1
- $actress['0,last_film'] = -1
- $actress['0,hired'] = 1
- $actress['0,retire'] = 0
- !--
- $actress['1,name'] = 'Bambi'
- $actress['1,rating'] = 0
- $actress['1,genres'] = 1
- $actress['1,age'] = 0
- $actress['1,date'] = -1
- $actress['1,last_film'] = -1
- $actress['1,hired'] = 0
- $actress['1,retire'] = 0
- !--
- $actress['2,name'] = 'Foxy'
- $actress['2,rating'] = 0
- $actress['2,genres'] = 4
- $actress['2,age'] = 0
- $actress['2,date'] = -1
- $actress['2,last_film'] = -1
- $actress['2,hired'] = 0
- $actress['2,retire'] = 0
- !--
- $actress['3,name'] = 'Ivana'
- $actress['3,rating'] = 0
- $actress['3,genres'] = 7
- $actress['3,age'] = 0
- $actress['3,date'] = -1
- $actress['3,last_film'] = -1
- $actress['3,hired'] = 0
- $actress['3,retire'] = 0
- !--
- $actress['4,name'] = 'Suzana'
- $actress['4,rating'] = 0
- $actress['4,genres'] = 8
- $actress['4,age'] = 0
- $actress['4,date'] = -1
- $actress['4,last_film'] = -1
- $actress['4,hired'] = 0
- $actress['4,retire'] = 0
- ! films
- ! $films['0,name'] - movie name
- ! $films['0,date'] - filming date - daystart, there may be problems when scrolling through cheats
- ! $films['0,date_str'] - date of filming in dd.mm.yyyy format
- ! $films['0,rating'] - movie rating, 0-99, output in stars, divide by 5
- ! $films['0,genre'] - film genre, see categories 0-10
- ! $films['0,actress'] - id actress, starring in the film, text array: 0.1
- ! $films['0,promo'] - the amount invested in the promotion of the film, 0 - 10,000
- ! $films['0,profit'] - net profit, depends on the rating of the film and advertising
- ! $films['0,price'] - budget of filming, depends on the rating of the actress and the genre of the film
- ! $films['0,view'] - number of views
- gs 'bratva_pornstudio','update_info'
- --- bratva_pornstudio_init ---------------------------------
|