• To improve security, we will soon start forcing password resets for any account that uses a weak password on the next login. If you have a weak password or a defunct email, please update it now to prevent future disruption.
5.00 star(s) 2 Votes

bitsybobs3

Ultimate Torrent Dude
Donor
Jun 13, 2021
3,613
2,018
Vendetta-0.3
You don't have permission to view the spoiler content. Log in or register now.
rpdl torrents are unaffiliated with F95Zone and the game developer.
Please note that we do not provide support for games.
For torrent-related issues use here, or join us on !
, . Downloading issues? Look here.​
 

Batmanbatmann

Newbie
Feb 10, 2018
54
9
Yeah thanks for the answer, I forgot to say that I finally found the solution, I just had to use the menu at the right to make time advance a bit… I leave it here, in case it might be helpful.

Hope to see next update soon.
how do u advance time
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,330
1,385
Quest says "Need to go to work".
Can't press on " Go to Work " or "city"

EDIT: If I first go workout before clicking on go to work, it gets disabled. And even with days skipping it still stays inactive.
 
  • Like
Reactions: megaera

Feyschek

Well-Known Member
Game Developer
Jun 12, 2021
1,155
640
Quest says "Need to go to work".
Can't press on " Go to Work " or "city"

EDIT: If I first go workout before clicking on go to work, it gets disabled. And even with days skipping it still stays inactive.
I think you should go into the game engine and see what the error is and fix it instead of the developer :)

As far as I know, you also work with this engine and have experience ;) Therefore, you will not have any problems.
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,330
1,385
I think you should go into the game engine and see what the error is and fix it instead of the developer :)

As far as I know, you also work with this engine and have experience ;) Therefore, you will not have any problems.
Problem is not that I can't fix it, problem is that all users will have the same problem and I am just reporting a bug.
 
  • Like
Reactions: Jove76

Feyschek

Well-Known Member
Game Developer
Jun 12, 2021
1,155
640
Problem is not that I can't fix it, problem is that all users will have the same problem and I am just reporting a bug.
I understood that.

I'm just surprised that these errors weren't fixed during the game test.
 

ttyrke

Well-Known Member
Game Developer
Jun 10, 2017
1,330
1,385
I understood that.

I'm just surprised that these errors weren't fixed during the game test.
Bugs are part of the process so no biggie. Sometimes dev's test it in "his way" and forgets that that players might use that differently, so that part might as well be tested.

As for go to work. Other locations are big images, so it's kinda strange that go to work is just text above them. I actually didn't even saw it till I searched for "work" in this thread.
 

Turtleguy007

Newbie
Game Developer
Oct 31, 2023
35
99
Hey regarding the disable is intentional on my part because stupid me thought it would be easy for people to discover the link, if its disable its because some link is tied with time. You can advanced time with the skip button. I will try to be more clear and explaining every details next time.
 

Turtleguy007

Newbie
Game Developer
Oct 31, 2023
35
99
I don't think I discover any error, at least yet. It seems to me people just getting a hard time because I'm not clear enough on the mechanics of the game.
 

Turtleguy007

Newbie
Game Developer
Oct 31, 2023
35
99
Quest says "Need to go to work".
Can't press on " Go to Work " or "city"

EDIT: If I first go workout before clicking on go to work, it gets disabled. And even with days skipping it still stays inactive.
try skipping time and not days man, the time is separate variable.
 

Feyschek

Well-Known Member
Game Developer
Jun 12, 2021
1,155
640
I don't think I discover any error, at least yet. It seems to me people just getting a hard time because I'm not clear enough on the mechanics of the game.
Everything is quite simple. The main thing is to understand how your code works for periods and days. Here is a simple example of my code to work in the game.

<<if $period gte 0 and $period lte 3>>
<div class="extradialog">Я открыл сайт с возможными подработками и начал рассматривать варианты.</div>\

<div class="Menuframe2"><table>
<tr>
<th><img src="System/PC/1.jpg" style="max-width: 80%;">
Для выполнения легких заказов требуется курьер, работа до вечера, оплата 100.</th>\
<th><img src="System/PC/2.jpeg" style="max-width: 80%;">
Нужен человек, который сможет работать оператором связи из дома, оплата 100.</th>
</tr>
<tr>
<th><<button 'Взять эту подработку ' `either('Курьер')`>><</button>></th>
<th><<button 'Взять эту подработку ' `either('Оператор связи')`>><</button>></th>
</tr>
</table></div>
<<else>>
<div class="extradialog">Искать подработку уже поздно.</div>
<</if>>

As we see in our code, one option will work from the period from 0 to 3, the other will always work when there is no period from 0 to 3. Well, if in your game work is available from Monday to Friday, you can try to do it like this.

<<if $day % 7 gte 1 and $day % 7 lte 5>>
<<if $period gte 0 and $period lte 3>>
<div class="extradialog">Я открыл сайт с возможными подработками и начал рассматривать варианты.</div>\

<div class="Menuframe2"><table>
<tr>
<th><img src="System/PC/1.jpg" style="max-width: 80%;">
Для выполнения легких заказов требуется курьер, работа до вечера, оплата 100.</th>\
<th><img src="System/PC/2.jpeg" style="max-width: 80%;">
Нужен человек, который сможет работать оператором связи из дома, оплата 100.</th>
</tr>
<tr>
<th><<button 'Взять эту подработку ' `either('Курьер')`>><</button>></th>
<th><<button 'Взять эту подработку ' `either('Оператор связи')`>><</button>></th>
</tr>
</table></div>
<<else>>
<div class="extradialog">Искать подработку уже поздно.</div>
<</if>>
<</if>>

Now this code will be shown from Monday to Friday. As you can see, the code is too large for the main passage where other code elements are located. Therefore, we create a widget.
(A widget requires a separate pass and a widget tag.)

<<widget 'Job'>>
<<if $day % 7 gte 1 and $day % 7 lte 5>>
<<if $period gte 0 and $period lte 3>>
<div class="extradialog">Я открыл сайт с возможными подработками и начал рассматривать варианты.</div>\

<div class="Menuframe2"><table>
<tr>
<th><img src="System/PC/1.jpg" style="max-width: 80%;">
Для выполнения легких заказов требуется курьер, работа до вечера, оплата 100.</th>\
<th><img src="System/PC/2.jpeg" style="max-width: 80%;">
Нужен человек, который сможет работать оператором связи из дома, оплата 100.</th>
</tr>
<tr>
<th><<button 'Взять эту подработку ' `either('Курьер')`>><</button>></th>
<th><<button 'Взять эту подработку ' `either('Оператор связи')`>><</button>></th>
</tr>
</table></div>
<<else>>
<div class="extradialog">Искать подработку уже поздно.</div>
<</if>>
<</if>>
<</widget>>

After that, we put this code <<Job>> in the passage we need. Everything works and the main thing is to save space in the main aisle.
 
  • Red Heart
Reactions: Turtleguy007

Feyschek

Well-Known Member
Game Developer
Jun 12, 2021
1,155
640
Yeah welp... You just live and learn. I will try to better up the instruction to be more clear cheers.
Believe me, it’s better to spend a lot of time testing and tweaking your code at the beginning than to suffer for hours or days later when your game gets big.
 

Collesart22

Member
Sep 6, 2017
201
64
first calling emma before go to work > can't go to city, restart, send text to emma before go to work, and finnaly meet mary, now.. where's Mc's get "coffee"???
 

megaera

Member
Nov 12, 2016
333
293
Hey regarding the disable is intentional on my part because stupid me thought it would be easy for people to discover the link, if its disable its because some link is tied with time. You can advanced time with the skip button. I will try to be more clear and explaining every details next time.
Real talk here: Where is the skip time button then?
 

Deepblume63

Newbie
Jan 17, 2019
76
56
What is it with new HTML games and not being phone friendly, its usually the UI that this games uses that is hell to traverse in mobile its 3 games now that it doesnt function properly
 
5.00 star(s) 2 Votes