Search found 15 matches

by Longknight
Tue Jul 24, 2018 9:36 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'py Tutorial Update?
Replies: 2
Views: 393

Re: Ren'py Tutorial Update?

thanks for that, i will do
by Longknight
Tue Jul 24, 2018 1:28 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'py Tutorial Update?
Replies: 2
Views: 393

Ren'py Tutorial Update?

Has the Tutorial been updated for the release of 7.0. I just looked that the Ren'Py Tutorial Game and the most up-to-date item is 6.99.8 for Transitions?
renpy.jpg
by Longknight
Thu Aug 21, 2014 1:04 am
Forum: Ren'Py Questions and Announcements
Topic: using renpy console : watch query
Replies: 2
Views: 5931

Re: using renpy console : watch query

I see, ok i'll keep working on it. Sorry i should have said this is part of a class that is using the Sprite Manager. This is an attempt to make a slight variation of the Sprite Manager example used in the Ren'py Tutorial. class StarField(object): def __init__(self): self.sm = SpriteManager(update=s...
by Longknight
Wed Aug 20, 2014 3:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy Developers Console Query : Guides to using the console
Replies: 4
Views: 3322

Renpy Developers Console Query : Guides to using the console

Im reposting this cause i didn't get a response to my query so i'll try a differnet way Below is my original post , so im wondering are there any detailed guides on using the console and how to enter expression and commands? ===========================================================================...
by Longknight
Mon Aug 18, 2014 1:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Script files won't open [SOLVED]
Replies: 13
Views: 4255

Re: Script files won't open

Hmm can you open the actually script.rpy from your directory with something like notepad?
by Longknight
Mon Aug 18, 2014 1:11 pm
Forum: Ren'Py Questions and Announcements
Topic: Script files won't open [SOLVED]
Replies: 13
Views: 4255

Re: Script files won't open

check that the project name you have on the left hand side of your renpy launcher, matches the files you have in the renpy directory

Also check preferences down the bottom of the launcher an check where your project directory is pointing.
by Longknight
Mon Aug 18, 2014 10:26 am
Forum: Ren'Py Questions and Announcements
Topic: using renpy console : watch query
Replies: 2
Views: 5931

using renpy console : watch query

Hi Everyone Im trying to use the console to try and monitor the values of some variable in this code for s, start, speed in self.stars: #if s.z < 1.0: #s.z = 32.0 #else: s.z -= 0.19 if 0 <= s.x < 800 and 0 <= s.y < 640 and 0 < s.z : k = 20.0 / s.z s.y = int(s.y * k + 320) s.x = int(s.x * k + 400) el...
by Longknight
Sat Aug 16, 2014 10:24 am
Forum: Ren'Py Questions and Announcements
Topic: init order
Replies: 4
Views: 1008

Re: init order

Excellent, Thank you for that
by Longknight
Sat Aug 16, 2014 7:15 am
Forum: Ren'Py Questions and Announcements
Topic: init order
Replies: 4
Views: 1008

Re: init order

Thank you for that, i couldn't find it anywhere i looked

Out of curiosity, are there certain things that should be initialized before or after certain things or is it pretty much up to the coder?
by Longknight
Sat Aug 16, 2014 5:44 am
Forum: Ren'Py Questions and Announcements
Topic: init order
Replies: 4
Views: 1008

init order

Hello all , i need some help i am trying to work thru some code to understand renpy and python better an i keep coming across the follow at different points in the files init -2: init -6 python: init: init -10 python: now i know its something to do with initialising values or python code before the ...
by Longknight
Fri Jul 25, 2014 8:27 pm
Forum: Completed Games
Topic: Sunrider: First Arrival [Free][Mecha][BxG][Steam]
Replies: 56
Views: 52004

Re: Sunrider: First Arrival [Free][Mecha][BxG][Steam]

I just came across Sunrider last night on stream, this game takes me back to the Robotech days, then i realised it was using renpy and freaked out even more. Loving the game I am very much getting into the programming side of what renpy and python can do, so i hope i can learn from what you have mad...
by Longknight
Tue Jul 08, 2014 11:25 am
Forum: Ren'Py Questions and Announcements
Topic: renpygame-demo crash - font not initialized [SOLVED]
Replies: 2
Views: 1153

Re: renpygame-demo crash - font not initialized

Hmmmm new problem My best score is 33 lol Thank you so much for your quick reply That worked I added the code into the script.rpy file above the init: like so # You can place the script of your game in this file. init python hide: import pygame pygame.font.init() init: # Declare images below this li...
by Longknight
Tue Jul 08, 2014 9:52 am
Forum: Ren'Py Questions and Announcements
Topic: renpygame-demo crash - font not initialized [SOLVED]
Replies: 2
Views: 1153

renpygame-demo crash - font not initialized [SOLVED]

Hello everyone I am very new to Ren'Py i already love it, still getting up to speed with python but i am enjoying it i downloaded renpygame-demo 1.2 and extracted it as directed, it shows in the launcher fine and starts ok but crashes once it calls the aliens.rpy here is the Traceback I'm sorry, but...