[WIP] Runic Stone

Ideas and games that are not yet publicly in production. This forum also contains the pre-2012 archives of the Works in Progress forum.
Message
Author
User avatar
Frizz-Chan
Regular
Posts: 37
Joined: Wed Jun 09, 2010 6:01 pm
Projects: Runic Stone
Contact:

Re: [WIP] Runic Stone

#61 Post by Frizz-Chan »

azureXtwilight wrote:Oooh! I love your textbox! <3
Is sume dateable?

How does the lovestat screen work? :o

nuuu sadly Sume is not dateble~ hes just the headmaster. (hmm my friend wanted Sume to dateble too...... *thinks about making a teacher level...but that will be after i finishe the other routes*)

the lovestat screen is an imagemap with buttons over the characters that lead to diff labels. I learned with my splashscreen that you can animate them too~ <3 as long as you draw all the frames

User avatar
Aleema
Lemma-Class Veteran
Posts: 2677
Joined: Fri May 23, 2008 2:11 pm
Organization: happyB
Tumblr: happybackwards
Contact:

Re: [WIP] Runic Stone

#62 Post by Aleema »

We're so funny ... "LOOK! A CUTE GUY! *pounce* OMG, HEADMASTER!! I'm sorry."

Rainbow guy makes me tingle. I luz colors.

I have to compliment your stat screen idea. That's really novel and very cute. I really, really like it. The fact that it's animated is awesome, too. So, you don't hover over the chars and something happens? Haveta click 'em?

User avatar
azureXtwilight
Megane Procrastinator
Posts: 4118
Joined: Fri Mar 28, 2008 4:54 am
Completed: Fantasia series (ROT and ROTA), Doppleganger: Dawn of The Inverted Soul, a2 (a due), Time Labyrinth
Projects: At Regime's End
Organization: Memento-Mori VNs, Team Sleepyhead
Location: Yogyakarta, Indonesia.
Contact:

Re: [WIP] Runic Stone

#63 Post by azureXtwilight »

Aleema wrote:We're so funny ... "LOOK! A CUTE GUY! *pounce* OMG, HEADMASTER!! I'm sorry."
Haha, me too ><
Frizz-Chan wrote:

nuuu sadly Sume is not dateble~ hes just the headmaster. (hmm my friend wanted Sume to dateble too...... *thinks about making a teacher level...but that will be after i finishe the other routes*)

the lovestat screen is an imagemap with buttons over the characters that lead to diff labels. I learned with my splashscreen that you can animate them too~ <3 as long as you draw all the frames
That's a nice feature, and the headmaster is not dateable!? :o *pulls own hair*

That sounds really interesting! :mrgreen:
Image

User avatar
Frizz-Chan
Regular
Posts: 37
Joined: Wed Jun 09, 2010 6:01 pm
Projects: Runic Stone
Contact:

Re: [WIP] Runic Stone

#64 Post by Frizz-Chan »

Aleema wrote:
I have to compliment your stat screen idea. That's really novel and very cute. I really, really like it. The fact that it's animated is awesome, too. So, you don't hover over the chars and something happens? Haveta click 'em?
the caracters should move by them selves at first by using just an animated picture for our first imagemap picture (without hovering)

Code: Select all

image lovemenuoneAN= Animation("lovemenuone.png", 0.5,
    "lovemenuoneA.png", 0.5,
    "lovemenuoneB.png", 0.5,)

Code: Select all

    $ result = renpy.imagemap("lovemenuoneAN", "lovemenuhover", [
            (55,274,143,557, "Apollo"),
            (157,275,245,558, "Ryuu"),
            (256,274,344,557, "Leo"),
            (363,274,451,557, "Tristan"),
            (459,274,547,557, "Koroko"),
            (559,268,647,551, "Ichizuru"),
            ], focus="imagemap")

    if result == "Apollo":
        jump ApolloStats
    if result == "Ryuu":
        jump RyuuStats
    if result == "Leo":
        jump LeoStats
    if result == "Tristan":
        jump TristanStats
    if result == "Koroko":
        jump KorokoStats
    if result == "Ichizuru":
        jump IchizuruStats

    return    
    $ renpy.pause()
    return

    #"Checking points"
    #if SilverLove_points == 100 :
    #    show lovestathard
    #    "Silver enjoys your company"

label ApolloStats:
    show apollopic
    "Points system check!"
    if ApolloLove_points == 100 :    
        #show lovestathard
        "Apollo enjoys your company"    
    $ renpy.pause()
    return
label RyuuStats:
    show ryuupic
    "Points system check!"
    if RyuuLove_points == 100 :    
        #show lovestathard
        "Ryuu enjoys your company"    
    $ renpy.pause()
    return
label LeoStats:
    show leopic
    "Points system check!"
    if LeoLove_points == 100 :    
        #show lovestathard
        "leo enjoys your company"    
    $ renpy.pause()
    return
label TristanStats:
    show tristanpic
    "Points system check!"
    if TristanLove_points == 100 :    
        #show lovestathard
        "Tristan enjoys your company"    
    $ renpy.pause()
    return
label KorokoStats:
    show korokopic
    "Points system check!"
    if KorokoLove_points == 100 :    
        #show lovestathard
        "koroko enjoys your company"    
    $ renpy.pause()
    return
label IchizuruStats:
    show ichizurupic
    "Points system check!"
    if IchizuruLove_points == 100 :    
        #show lovestathard
        "ichizuru enjoys your company"    
    $ renpy.pause()
    return
so your end product look like so...

Image

* you could animate your "hover" picture too, I'm not though luls


sorry for any misspelled stuff (i typed this in a hurry before leaving~ ;A;)

Topagae

Neque porro quisquam est qui dolorem ipsum quia dolor sit am

#65 Post by Topagae »

Neque porro quisquam est qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit..."
Last edited by Topagae on Thu Aug 25, 2011 4:45 pm, edited 2 times in total.

Ruruka-chan
Regular
Posts: 82
Joined: Sun Nov 08, 2009 10:10 am
Location: Germany
Contact:

Re: [WIP] Runic Stone

#66 Post by Ruruka-chan »

Mw Sume is so hot ^^
Too bad he not dateable.V_V

User avatar
Frizz-Chan
Regular
Posts: 37
Joined: Wed Jun 09, 2010 6:01 pm
Projects: Runic Stone
Contact:

Re: [WIP] Runic Stone

#67 Post by Frizz-Chan »

Ack sorry its been so long since i've updated here. ;A;

i've been working on C.Gs and sprites, and text but its noting i can upload here--cause if i gave you guys everything i have--when you get the game you'd be "i've already seen this Q^Q "


haha.....(shot) anyways i've been steadily working on this {fear not, Runic Stone is not dead}... an i wanna ask two questions.

1. lately when im doodling the cg's and i start to draw the main character i get annoyed that their is no eyes and junk. that shes faceless. Does this aspect in V.N's still appeal to anyone? or should i make the main character more defined?

2. I've been thinking about ways to spice things up in Ren'py and wondered if anyone would like or dislike a "touch" function when it came to the game? hmmm maybe a better way to describe it would be like: during certain scenes you could choose to touch the character and get reactions. (is this creepy?)

HEY, IGNORE THE QUALITY OF THE PIC'S~~!!!! Q^Q they were rushed and are just examples- the fished product will look sexy~


Image
like in the first you would click his jacket, then his cloths, then other things idk. luls

I plan on doing this by using imagemaps that link to eachother and junk.
I could prolly animate it so that the eyes blink and blush lingers and ect...
another thing i've been thinking about doing is for these scenes use the text subtitle function
Image
haha. dont worry the subtitles in ren'py look alot better than this photoshop fail. just wanted to show you an example.


hmmm. idk what do you all think?

User avatar
Aleema
Lemma-Class Veteran
Posts: 2677
Joined: Fri May 23, 2008 2:11 pm
Organization: happyB
Tumblr: happybackwards
Contact:

Re: [WIP] Runic Stone

#68 Post by Aleema »

O_O Girl boner.

Please make the main character more defined. :)

Touch function is not creepy, and very cool. Skinship in TokiMemo was awesome, though seemingly arbitrary. If touching someone's eyes meant actually touching their eyes, I dunno. lol

User avatar
Frizz-Chan
Regular
Posts: 37
Joined: Wed Jun 09, 2010 6:01 pm
Projects: Runic Stone
Contact:

Re: [WIP] Runic Stone

#69 Post by Frizz-Chan »

O_O Girl boner
good thats what i was aiming for luls >w<
Please make the main character more defined.
secretly this makes me happy to hear that *gos back and fixes her c.g's


Touch function is not creepy, and very cool. Skinship in TokiMemo was awesome, though seemingly arbitrary. If touching someone's eyes meant actually touching their eyes, I dunno. lol
i actually wasnt familiar with "skinship" so i had to go and look it up luls. and its pretty much what i was going for... but i dont know if i could execute it all the time like in TokiMemo? I think i would have to save it for when "touching" the character is acceptable. Like im not sure if i want to put it into all the conversations that the main character and boys have (or if its even possible, considering that i planed on using imagemaps).

Arithra
Regular
Posts: 194
Joined: Wed Jul 28, 2010 2:29 pm
Completed: Finding a prom date
Location: Germany
Contact:

Re: [WIP] Runic Stone

#70 Post by Arithra »

I agree with Aleema. A defined main character is way better. and the idea of touching is :twisted: making me very happy...
Please visit my projects Perios- Chained Sorceress
and Final Banquet now with demo!

And my blog for more updates!

Ruruka-chan
Regular
Posts: 82
Joined: Sun Nov 08, 2009 10:10 am
Location: Germany
Contact:

Re: [WIP] Runic Stone

#71 Post by Ruruka-chan »

I agree with Aleema and Arithra. The touching idea is cool and making me happy too (^w^)
Is Silver dateable ?

User avatar
Frizz-Chan
Regular
Posts: 37
Joined: Wed Jun 09, 2010 6:01 pm
Projects: Runic Stone
Contact:

Re: [WIP] Runic Stone

#72 Post by Frizz-Chan »

Is Silver dateable


well thats tricky. Silver is only in the beginning of the game technically since im only working on the Red side. Silver is a character from the purple side. In Red he does come back to visit you and you can go an visit him. but he is substantially less dateble/acquirable then the rest of the characters.

so... hes about as dateable as rainbow guy...but still dateable.

Cain0425
Miko-Class Veteran
Posts: 506
Joined: Thu May 20, 2010 8:39 pm
Contact:

Re: [WIP] Runic Stone

#73 Post by Cain0425 »

i want date the hot rainbow guy :twisted: :twisted: :twisted:

User avatar
sayuri
Veteran
Posts: 345
Joined: Thu Mar 11, 2010 10:04 pm
Projects: It's a secret~
Location: New Orleans
Contact:

Re: [WIP] Runic Stone

#74 Post by sayuri »

I personally think all the male professors are hot. Well, Crosby not so much but I'd totally go for Sume, Bane, and Safine. I know it'd be crazy doing their routes too, orz. But hey, if you want to make it massive with six guys per route :twisted:.

User avatar
Starling
Regular
Posts: 175
Joined: Thu Jun 17, 2010 6:00 pm
Completed: Rapunzel, Ishara: Bane of the Seas
Organization: Happy Backwards
Location: Osaka
Contact:

Re: [WIP] Runic Stone

#75 Post by Starling »

Ah~ I love the stuff you updated about :D The boys are just too adorable~

I think the touch thing would be really interesting

And your textbox is amazingly awesome.
Completed:
Rapunzel -- Fairy Tale Kinetic Novel
(NaNoRenO '11 )
the empty orchestra
(NaNoRenO '14)
Image
(NaNoRenO '15)

Post Reply

Who is online

Users browsing this forum: No registered users