Search found 13 matches

by Loopaz
Fri Feb 19, 2021 12:04 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Get syntax error. Why?
Replies: 3
Views: 379

Re: Get syntax error. Why?

oh thats my lack of knowledge. Thank you mr!
by Loopaz
Fri Feb 19, 2021 12:03 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Get syntax error. Why?
Replies: 3
Views: 379

Re: Get syntax error. Why?

funny thing is when i delete whole else statement the code chcecker jump to another error, but i dont understand whay i have it ><
by Loopaz
Fri Feb 19, 2021 11:51 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Get syntax error. Why?
Replies: 3
Views: 379

[SOLVED]Get syntax error. Why?

Hello! It is propably simple question. I am making money system to my game. I get syntax error after first else statement and dont understand why i get it. Regards Loopaz init python: from random import randint wallets = (pockets, wallet_tiny, wallet_small, wallet_medium, wallet_big, wallet_huge) ba...
by Loopaz
Sun Dec 06, 2020 3:33 pm
Forum: Ren'Py Questions and Announcements
Topic: Checking that age of user is legal
Replies: 3
Views: 772

Re: Chcecking that age of user is legal

Not speaking is senseless. You don't have to check if an user is "minor aged" (the concept vary by nation) but you must have the informed consent of the user that he want to continue even if that thing is not for minors. So, if the dad purse you, you can tell the content was behind a cons...
by Loopaz
Sun Dec 06, 2020 12:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Checking that age of user is legal
Replies: 3
Views: 772

Checking that age of user is legal

Hello. I want to check that player age is legal so label date_of_birth: today = date.today() $ dob.year = renpy.input("Date of birth. Year:", allow ="0123456789" ,length =4) $ dob.month = renpy.input("Date of birth. Month:", allow ="0123456789",length= 2) $ do...
by Loopaz
Tue May 14, 2019 4:42 am
Forum: Ren'Py Questions and Announcements
Topic: Should show data not memory alloc and nbound method error
Replies: 2
Views: 308

Re: Should show data not memory alloc and nbound method error

Seriusly Remix, did u know that i dont understand what is instantiate ?
I dont know wich step i should doo to make it happen with your advice.
Yes, use the shovel method.
by Loopaz
Mon May 13, 2019 3:43 am
Forum: Ren'Py Questions and Announcements
Topic: Should show data not memory alloc and nbound method error
Replies: 2
Views: 308

Should show data not memory alloc and nbound method error

Hello.! Error msg I'm sorry, but an uncaught exception occurred. While running game code: File "game/script.rpy", line 49, in script $ clock.addtime(15) # Q how to able add for ex months? Count? 60x24x31~~44640 File "game/script.rpy", line 49, in <module> $ clock.addtime(15) # Q ...
by Loopaz
Sat Mar 02, 2019 7:13 pm
Forum: Ren'Py Questions and Announcements
Topic: Inventory>Container>append only when size// Character have own inventory
Replies: 2
Views: 321

Inventory>Container>append only when size// Character have own inventory

:D Hi hai Hello! I wold like to make hundrets of different containers with different max_value and accept size =< item I will get an answer but few week later soo i ask u now Can u help me? # _____ _ # | | | | # | | _ ____ _____ _ __ | |_ ___ _ __ _ _ # | | | '_ \ \ / / _ \ '_ \| __/ _ \| '__| | | |...
by Loopaz
Sat Mar 02, 2019 6:28 pm
Forum: Development of Ren'Py
Topic: fououn a buuug
Replies: 1
Views: 542

fououn a buuug

hello\ am drunk todej but i fund a bug in renpy turtorial in Eileen: Of course, the what_bold, who_italic and who_size properties also exist, even if they're not used here.: Copied the example to the clipboard. the elien says Of course, the who_bold, what_italic and what_size properties also exist, ...
by Loopaz
Fri Mar 01, 2019 11:05 am
Forum: Ren'Py Cookbook
Topic: Delete me plz\ doubled topic
Replies: 0
Views: 1672

Delete me plz\ doubled topic

Unfortunately the code was posded before by Remix ;P Delete plz doubled topic Hello Here i have a code for random events made for me by Remix :) Just sharing :D label choice_jump(*choice_targets): # *choice_targets can be lists/tuples or just string: # each argument is a label name with optional wei...
by Loopaz
Sat Apr 14, 2018 9:01 am
Forum: Ren'Py Questions and Announcements
Topic: Clock + Calendar counter
Replies: 9
Views: 1000

Re: Clock + Calendar counter

Ok. First of all. I started to learn python Second For now it is to hard to understand what is going on and how to use provided data to implement on other code. Third That's great that gentleman meet each other :D I will look for something what is easy to read Thanks for try U get my credits :) Sinc...
by Loopaz
Fri Apr 13, 2018 6:12 pm
Forum: Ren'Py Questions and Announcements
Topic: Clock + Calendar counter
Replies: 9
Views: 1000

Re: Clock + Calendar counter

Wow! First of all It is black magic for me But I go after logic and init python: class clock(object): def __init__(self, century = 19, year = 1999, month = 1, day = 1, hour = 8, minute = 0): self._century = century self._year = year self._month = month self._day = day self._hour = hour self._minute ...
by Loopaz
Fri Apr 13, 2018 3:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Clock + Calendar counter
Replies: 9
Views: 1000

Clock + Calendar counter

Hello I started writing a VN and i need more help because i don't know how to bite this. How to make clock which will move further with time only when player do something like label player_wake: $ minutes +5 "Time to wake up" and calendar implemented to this counting clock every time move ...