hi

If you're having trouble using Context Free or don't understand the language, ask for help here.

Moderators: MtnViewJohn, chris, mtnviewmark

Post Reply
ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

hi

Post by ladykassie »

can someone give me a start on creating rune symbols..

black background and a bluish glow??????
please!

User avatar
zol
Posts: 40
Joined: Sun Mar 23, 2008 4:14 pm

Post by zol »

If you look through the gallery for images with similar effects, you can can copy the scripts from the "View Large" page and work from those.
(There's a "Next 100" link at the very, very bottom of the page to see more).

Then after you've made a start yourself and know which parts you're having problems with, people can give you better help on the details.

Otherwise we might just end up taking over completely :wink:

Code: Select all

background{b -1}
startshape bluishglow
rule bluishglow{10* {s .9} CIRCLE{b 1 sat 1 h 250 a -.9}}

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

kinda like the furry swirls..
rune symbols in a circle..

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

the thing I don't know how to make the runes..;0)

User avatar
zol
Posts: 40
Joined: Sun Mar 23, 2008 4:14 pm

Post by zol »

As in Runic Alphabet?

Code: Select all

rule stick1{SQUARE{s .05 1}}
rule stick2{stick1{x (tan(45)/2) r 45 s 1 (1/cos(45))}}
rule stick3{stick1{x (tan(30)/2) r 30 s 1 (1/cos(30))}}
rule twig1{SQUARE{s .05 .4}}
rule twig2{twig1{x (tan(45)*.2) r 45 s 1 (1/cos(45))}}
rule twig3{twig1{x (tan(60)*.2) r 60 s 1 (1/cos(60))}}

rule fehu{
    stick1{}
    twig2{y .28 f 0}
    twig2{ f 0}
}

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

i cant see anything..
just beeps..

User avatar
zol
Posts: 40
Joined: Sun Mar 23, 2008 4:14 pm

Post by zol »

startshape

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

background{b -1}
startshape bluishglow
rule bluishglow{10* {s .9} CIRCLE{b 1 sat 1 h 250 a -.9}}

rule stick1{SQUARE{s .05 1}}
rule stick2{stick1{x (tan(45)/2) r 45 s 1 (1/cos(45))}}
rule stick3{stick1{x (tan(30)/2) r 30 s 1 (1/cos(30))}}
rule twig1{SQUARE{s .05 .4}}
rule twig2{twig1{x (tan(45)*.2) r 45 s 1 (1/cos(45))}}
rule twig3{twig1{x (tan(60)*.2) r 60 s 1 (1/cos(60))}}

rule fehu{
stick1{}
twig2{y .28 f 0}
twig2{ f 0}
}

ughhhhhhhhh.... I am so stupid when it comes to this!!!!!

User avatar
zol
Posts: 40
Joined: Sun Mar 23, 2008 4:14 pm

Post by zol »

They are separate scripts.

Just use

Code: Select all

startshape fehu
with no background setting to see the second one by itself.

Or to combine them, keep the original background and startshape, but change

Code: Select all

rule bluishglow{
    10* {s .9} CIRCLE{b 1 sat 1 h 250 a -.9}
    fehu{z 1 s .5}
}

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

i am still getting beeps..
ughhhhhhhhhh

can you please just do the script..... I can learn better that way..and be able to start

User avatar
zol
Posts: 40
Joined: Sun Mar 23, 2008 4:14 pm

Post by zol »

This works fine for me

Code: Select all

background{b -1} 
startshape bluishglow 
rule bluishglow{
10* {s .9} CIRCLE{b 1 sat 1 h 250 a -.9}
fehu{z 1 s .5}
}
rule stick1{SQUARE{s .05 1}}
rule stick2{stick1{x (tan(45)/2) r 45 s 1 (1/cos(45))}}
rule stick3{stick1{x (tan(30)/2) r 30 s 1 (1/cos(30))}}
rule twig1{SQUARE{s .05 .4}}
rule twig2{twig1{x (tan(45)*.2) r 45 s 1 (1/cos(45))}}
rule twig3{twig1{x (tan(60)*.2) r 60 s 1 (1/cos(60))}}

rule fehu{
    stick1{}
    twig2{y .28 f 0}
    twig2{ f 0}
}
But I'm using version 2.2beta2 with no GUI.
If you're still using whatever was around in 2005, it wouldn't understand this.
Last edited by zol on Mon Apr 21, 2008 4:10 am, edited 1 time in total.

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

rule stick 2 beeps.. it's highlighted blue when I try to render

User avatar
zol
Posts: 40
Joined: Sun Mar 23, 2008 4:14 pm

Post by zol »

Okay, it'll be the expressions.
Get your calculator and replace them with actual numbers, and no "()".

ladykassie
Posts: 17
Joined: Tue Dec 13, 2005 4:36 am

Post by ladykassie »

okay.. got it.. I downloaded the verison 2..

thanks..

Post Reply