Search found 23 matches

by aLvhine---
Mon May 23, 2016 9:44 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] Call label with expression of variables
Replies: 2
Views: 309

[Solved] Call label with expression of variables

Hello guys, i need your help. I want make a looping to call many various labels. $ Day = 1 while Day < 3: "Start from dorm" $ StrDay = str(Day) call morn_+expression StrDay call aftn_+expression StrDay call night_+expression StrDay "The end the day" $ Day += 1 "At least the ...
by aLvhine---
Fri Apr 29, 2016 1:07 am
Forum: Ren'Py Questions and Announcements
Topic: Something about commercial thing
Replies: 3
Views: 435

Re: Something about commercial thing

Sorry for slow response. @trooper6 : anyway, I've read and jump to some conclusion that We as developer need to add this "README file" This program contains free software licensed under a number of licenses, including the GNU Lesser General Public License. A complete list of software is av...
by aLvhine---
Wed Apr 27, 2016 12:56 am
Forum: Ren'Py Questions and Announcements
Topic: Something about commercial thing
Replies: 3
Views: 435

Something about commercial thing

Hello guys. It has been a long time for me since the last time I active in this forum. :) well anyway, I want to make a commercial game with renpy, but I want to make sure something before the development time begin. I read in https://www.renpy.org/why.html, and it said " Ren'Py is free to use ...
by aLvhine---
Sat May 23, 2015 10:58 am
Forum: Ren'Py Questions and Announcements
Topic: Reset Persistent Data
Replies: 12
Views: 3634

Re: Reset Persistent Data

philat : thanks... that's docs.. yeah~

xavimat : thanks :D, i'll try tonight (y)
by aLvhine---
Fri May 22, 2015 9:27 am
Forum: Ren'Py Questions and Announcements
Topic: Reset Persistent Data
Replies: 12
Views: 3634

Re: Reset Persistent Data

$ persistent.scores = [] great! so next question is, how insert that statement to a text button... i tried with this one. screen highscore(): vbox: $ i=1 text "High scores" at center for name, score in persistent.scores: text "[i]. [name] : [score]" $ i=i+1 textbutton _("Ke...
by aLvhine---
Fri May 22, 2015 9:09 am
Forum: Ren'Py Questions and Announcements
Topic: Reset Persistent Data
Replies: 12
Views: 3634

Re: Reset Persistent Data

Did you capitalise None? I think like True and False it needs a capital letter. ah you're right.. okay it's done for that line. the problem come up like when i tried to delete all persistent data. when i start the game from the beginning, then when going to score board. this error came up... While ...
by aLvhine---
Fri May 22, 2015 8:48 am
Forum: Ren'Py Questions and Announcements
Topic: Reset Persistent Data
Replies: 12
Views: 3634

Re: Reset Persistent Data

If you know what persistent data should be reset, isn't just $persistent.scores=None enough? If you don't know what persistent is exist and want to delete them all, then use $persistent._clear() i tried to use $ persistent.scores=none then, error "none" is not defined. but when i tried to...
by aLvhine---
Fri May 22, 2015 5:19 am
Forum: Ren'Py Questions and Announcements
Topic: Reset Persistent Data
Replies: 12
Views: 3634

Re: Reset Persistent Data

trooper6 :okay i found it, but that's not i wanted. because when the game already complie, we don't need a launcher to play our game right? so that's why i need a code to delete the persistent data.. but thanks for the answer. pyhtom : is this that what u mean? (if my persistent name is "scores...
by aLvhine---
Thu May 21, 2015 11:55 pm
Forum: Ren'Py Questions and Announcements
Topic: Reset Persistent Data
Replies: 12
Views: 3634

Reset Persistent Data

Hello guys, i already make a score board (just show a name and score -> Data from the persistent data(scores))
and i want to make a button "reset score board".
can someone help me how to delete the persistent data, so i can make a button "Reset" in scoreboard screen?

thanks
by aLvhine---
Wed May 13, 2015 11:13 am
Forum: Ren'Py Questions and Announcements
Topic: export .txt file to record a score.
Replies: 7
Views: 1377

Re: export .txt file to record a score.

Philat : tq, i've tried and success. :D
by aLvhine---
Tue May 12, 2015 1:57 am
Forum: Ren'Py Questions and Announcements
Topic: export .txt file to record a score.
Replies: 7
Views: 1377

Re: export .txt file to record a score.

DragoonHP : Well, i tried to use ur method but got an error, btw thx for the answer. :D philat : Oo.. so that's why i got an error, well after i add $ in front of append and sort lines no errors appear anymore. tq well, my goal is to show that .txt contains a record. btw, can i ask u something about...
by aLvhine---
Mon May 11, 2015 9:15 pm
Forum: Ren'Py Questions and Announcements
Topic: export .txt file to record a score.
Replies: 7
Views: 1377

Re: export .txt file to record a score.

i got an error "expected statement" in line persistent.scores.append this my code when start # The game starts here. label start: #set nama NPC $ NPC = "Mr. Fabulous" $ player_name = "Kupret" #Set Default Scores $ score = 0; this is from persistent data e "Sekarang...
by aLvhine---
Mon May 11, 2015 12:16 pm
Forum: Ren'Py Questions and Announcements
Topic: export .txt file to record a score.
Replies: 7
Views: 1377

export .txt file to record a score.

hey guys, can renpy export .txt file to record a score.
ex :

i play the game with username ( $ name) = TreeMon.
then i play the game n got score ( $ score) = 5000.

when i exit the game/jump to label in the game.
i can export the username n score in .txt file

like : TreeMon 5000
by aLvhine---
Sat May 09, 2015 10:53 pm
Forum: Ren'Py Questions and Announcements
Topic: screen and init phyton or something
Replies: 5
Views: 863

Re: screen and init phyton or something

philat : i see, but when i try it. i got an another error. due the condition (Tuesday, i must complete this game), i decided to using menus for now.

trooper6 : yeah~ thx for reply... i will use menus.

(maybe, after tuesday, i will looking forward about this).