Thursday 30 May 2013

OH MY... TAIL ARMORS, CLOUDS, LEGENDS.... ARE BACK

Hey guys, breaking news...
The construction of club geoz is complete, but no more monthly member gifts XD
Look...
Go inside the Diamond shop in Jamaa township and you will see...
LEGENDS
CLOUDS
TAIL ARMORS
SOME MEMBER GIFTS
ARCTIC WOLVES (YAY!)
LIONS
SNOW LEOPARDS
...

Yeah so... I'm kinda happy!
Still, spikes might come back because they said some past Monthly gifts are coming back...
Well Jammers... members get Diamonds every week ^3^
Bai!

Wednesday 29 May 2013

Anime?

Hi!
Do you think I should post pictures of my Anime on my Art page? I'm pretty good at it, I guess I can listen to your feedback ^3^
Bai!See yo tomorrow!


Scroll down for today's post please!Sorry, no time to advertise... tomorrow?

Sun hat and... Where the heck is river race?

Hallo!
Today's item is located at the Summer carnival...
Picture from Kinyonga x3

Hmm... Non member! Wow! Thank you AJHQ! ^U^
Not bad, but honestly, before this came out I preferred this 'Sun hat':
It's actually a gardening hat, but it looks better on my seal ^3^
Oh well, just my fashion taste.
As a side topic, did you notice River race is back? With the most recent update?
See? You can even see the orange cone behind me that proves this is from this update. And I don't have photoshop so it would be hard to edit this either.
But, it's been 6 days... and... the arcade game is still not there!
Well, we might have to wait another 8 days or more, because when Hedge-hog first came out on September 14, it was visible in the arcade on the 28th and it came out to buy ages later. .-. I guess RR will be similar?  Well I got to go, no more time, scroll down, I also posted about what AJ lands woudl look liek in real and what Jamaa township looks like each season. Got to go, sorry for typos! DX


Tuesday 28 May 2013

How to get a glitter cursor like mine on your blog!

Hi.
Visit Kinyonga's blog! Click here!
Visit Infinitymagicheroisback's blog! Click here!
Request your blog to be advertised by commenting!
Email me using my Real life Email here! Don't spam or suffer... XD
Kinyonga has asked me how to get a glitter pointer on your blog like I do, so I am going to type out a proper tutorial!


  1. Go to blogger dashboard and press template.
  2. Now press edit HTML.
  3. Under <head> (which is at the top) Copy the following code:
  4. <script type='text/javascript'>


    </script>


    <script type='text/javascript'>
    // <![CDATA[
    var colour="#FF00E1";
    var sparkles=100;


    var x=ox=400;
    var y=oy=300;
    var swide=800;
    var shigh=600;
    var sleft=sdown=0;
    var tiny=new Array();
    var star=new Array();
    var starv=new Array();
    var starx=new Array();
    var stary=new Array();
    var tinyx=new Array();
    var tinyy=new Array();
    var tinyv=new Array();
    window.onload=function() { if (document.getElementById) {
    var i, rats, rlef, rdow;
    for (var i=0; i<sparkles; i++) {
    var rats=createDiv(3, 3);
    rats.style.visibility="hidden";
    document.body.appendChild(tiny[i]=rats);
    starv[i]=0;
    tinyv[i]=0;
    var rats=createDiv(5, 5);
    rats.style.backgroundColor="transparent";
    rats.style.visibility="hidden";
    var rlef=createDiv(1, 5);
    var rdow=createDiv(5, 1);
    rats.appendChild(rlef);
    rats.appendChild(rdow);
    rlef.style.top="3px";
    rlef.style.left="0px";
    rdow.style.top="0px";
    rdow.style.left="3px";
    document.body.appendChild(star[i]=rats);
    }
    set_width();
    sparkle();
    }}
    function sparkle() {
    var c;
    if (x!=ox || y!=oy) {
    ox=x;
    oy=y;
    for (c=0; c<sparkles; c++) if (!starv[c]) {
    star[c].style.left=(starx[c]=x)+"px";


    star[c].style.top=(stary[c]=y)+"px";
    star[c].style.clip="rect(0px, 5px, 5px, 0px)";
    star[c].style.visibility="visible";
    starv[c]=50;
    break;
    }
    }
    for (c=0; c<sparkles; c++) {
    if (starv[c]) update_star(c);
    if (tinyv[c]) update_tiny(c);
    }
    setTimeout("sparkle()", 40);
    }
    function update_star(i) {
    if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
    if (starv[i]) {
    stary[i]+=1+Math.random()*3;
    if (stary[i]<shigh+sdown) {
    star[i].style.top=stary[i]+"px";
    starx[i]+=(i%5-2)/5;
    star[i].style.left=starx[i]+"px";
    }
    else {
    star[i].style.visibility="hidden";
    starv[i]=0;
    return;
    }


    }
    else {
    tinyv[i]=50;
    tiny[i].style.top=(tinyy[i]=stary[i])+"px";
    tiny[i].style.left=(tinyx[i]=starx[i])+"px";
    tiny[i].style.width="2px";
    tiny[i].style.height="2px";
    star[i].style.visibility="hidden";
    tiny[i].style.visibility="visible"
    }
    }
    function update_tiny(i) {
    if (--tinyv[i]==25) {
    tiny[i].style.width="1px";
    tiny[i].style.height="1px";
    }
    if (tinyv[i]) {
    tinyy[i]+=1+Math.random()*3;
    if (tinyy[i]<shigh+sdown) {
    tiny[i].style.top=tinyy[i]+"px";
    tinyx[i]+=(i%5-2)/5;
    tiny[i].style.left=tinyx[i]+"px";
    }
    else {




    tiny[i].style.visibility="hidden";
    tinyv[i]=0;
    return;
    }
    }
    else tiny[i].style.visibility="hidden";
    }
    document.onmousemove=mouse;
    function mouse(e) {
    set_scroll();
    y=(e)?e.pageY:event.y+sdown;
    x=(e)?e.pageX:event.x+sleft;
    }
    function set_scroll() {
    if (typeof(self.pageYOffset)=="number") {
    sdown=self.pageYOffset;
    sleft=self.pageXOffset;
    }
    else if (document.body.scrollTop || document.body.scrollLeft) {
    sdown=document.body.scrollTop;
    sleft=document.body.scrollLeft;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
    sleft=document.documentElement.scrollLeft;
    sdown=document.documentElement.scrollTop;
    }
    else {
    sdown=0;
    sleft=0;
    }
    }
    window.onresize=set_width;
    function set_width() {
    if (typeof(self.innerWidth)=="number") {
    swide=self.innerWidth;
    shigh=self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientWidth) {
    swide=document.documentElement.clientWidth;
    shigh=document.documentElement.clientHeight;
    }
    else if (document.body.clientWidth) {
    swide=document.body.clientWidth;
    shigh=document.body.clientHeight;
    }
    }
    function createDiv(height, width) {
    var div=document.createElement("div");
    div.style.position="absolute";
    div.style.height=height+"px";
    div.style.width=width+"px";
    div.style.overflow="hidden";
    div.style.backgroundColor=colour;
    return (div);
    }
    // ]]>
    </script>
  5. You see where it says 'Var colour' at the beginning? You change the colour with this, but ensure you put in the HTML code! Good luck!
Thank you for voting on my poll ♥ I will take down the tutorials page.

Monday 27 May 2013

Self harming again -.-'

Hi :(
So... this .. bitch...
Fuzzygirl173
Yeah
I was ranting about rare bridges in Jamaa township and this girl.. she was just being such a pussy -.-
She said I acutally act like that..
And then...she said things like...

Oh her fat face is too heavy
You have no friends
Get IT off the bridge
Your face scared everyone
10 year old
Go to hell
That thing is so annoying
Yeah sure... you do act like that

And more...
 So did her little friend PandaLove00123

Yeah so I just started self-harming again .-.
IF YOU READ THIS...

Good.
Here's the only pic I took
By any she means friends .-.
PS. WORD VERIFICATION FROM COMMENTS IS NOW GONE
PPS. WANNA SEE THE BLOG IN JUNE? SNEAK PEEK HERE
STILL LOOKING FOR A GOOD FRONT PICTURE



Jamaa Throughout the seasons

Hello!
Jamaa Township changes throughout the seasons, here are some pictures...
All credit to...whoever these belong to and Animal Jam spirit blog
WINTER

      
  

Winter begins in about late November and ends somewhere around Late February/Early-Mid March
SPRING



Spring commences in Early/Mid March and finishes in Late May.
SUMMER




These are mine, obviously x3 I have another one on my laptop, I will put it up here soon.
Summer begins in Late May and ends somewhere in September.
AUTUMN
 

Autumn commences in September (Early/Mid) and ends in Late November.
HALLOWEEN IN JAMAA!
This sub season comes around October and ends on November 1 without any warning.



There! Now for some facts about each season...
Winter

  • The music turns into the Jamaaliday Jam music in December.
Spring

  • There is a Spring egg hunt each year, with prizes!
Summer

  • This is the season River race returns.
Fall

  • This is when River race is deleted for a while. This started in 2012.
Bonus Pictures:




AJ lands in real life

Hallo! (\(ouo)
Here's just a quick post of all the AJ lands and what they would look like in real life X3 (Those are just snippets and not very accurate OK?)
JAMAA TOWNSHIP

CORAL CANYONS

CRYSTAL SANDS

SAREPIA FOREST

APPONDALE

TEMPLE OF ZIOS

MOUNT SHIVEER

CRYSTAL REEF

DEEP BLUE

KANI COVE


BAHARI BAY

Yeah so... not accurate but yeah, enjoy x3


Sunday 26 May 2013

LOL HI!!!
I met this creepy pedo.... XDD
No really I was in the pillow room because all buddies were offline...
Then this fox came in saying 'Who is here to do it'
I was, of course, going like... 'YOU HAVE NO IDEA HOW WRONG THAT SOUNDS XDD'
He went for a while,then Pedo came back XD
He said ... 'I am pedal bear'
I was like 'Eew prv'
Then he said stuff like....
'Do you have utoob'
I was freaked out when he said he would rape me and so I deleted the 2 videos I had with my face in >o<
Then he said he's 60 -.-'
Eeew...
So yeah... creepy guy XDD
I said I kicked his squishy balls :T
XDD
Now I'm just shaken I feel like I'll never go on AJ again... o.o

Saturday 25 May 2013

INFINITYMAGICHEROISBACK IS A NICE JAMMER!

Hey Pickles!
So VisualEffects has been such a pussy recently...
Just look....
http://www.youtube.com/watch?v=rq7SYKfD0Bw
What the hell!?
Honestly? Dickhead.
Honestly, Infinity is an extremely nice Jammer that helped me when I needed it most. He did nothing bad. He even said he quit scamming.
Visual, you are a faggot. Get it? GOOD. BITCH! You're a potato now :T
I'm sorry you have to go through this, Infinity... but some people will always remain your friends OUO
So yeah Visual, you suck...
YOU ARROGANT RARE HUNGRY JEALOUS LONELY MOTH-EATEN LYING LITTLE POTATO SMELLY SHIT SOAKED SCAMMING PRICK!
XD
So yeah....

Thursday 23 May 2013

New Banner

Hallo! (\ouo)
I'm now on Fantage... not the best website ever :T Anyway, I'm QueenPickle on there.
Anyway here it is...

Create your own banner at mybannermaker.com!


Small update changes I forgot about o.o

Hi!
Here are some new things AJ added this update ^.^
See? The sparkly flashing white thingy... it's hard to capture though XD
We know about the gems
And look, the 'Monocle' is now called the Steampunk monocle to clear up confusion?
An actual steampunk monocle:
Do you think a real monocle is coming to Jamaa?


DJ Turntables+Update post below this one!

Hey!
The update post is below this one ^3^
Today's item is located in the Jam session on now!
Bye! And check out the update post!

Jamaa Journal Volume 87

Hey Guys!
Be sure to visit Kinyonga's blog by clicking here!
If you want me to advertise your blog here every day for free, leave a comment. 
Long time since I last did an Update post, but here it is! It's an exciting update- not that the Jamaa Journal is very exciting, of course.
All picture credit goes to Kinyonga- long story DX

Exciting... you even get prizes! I have no idea what they are... yet... I will play later, and ensure your volume is up XD I hope ya guys learn something from this XD I bet the prizes are plushies... I bet you a potato.
Yes, I'm sick; I got the common Pickle bug which is sent by Potatoes to noble people of Pickle island... such as me, the Queen on Pickles. I hope it goes soon!
Switching to pictures from Snowyclaw's blog, Kinyonga's won't display on my laptop D:
While waiting for the page to load... speaking of Snowy, I randomly met her today. She is really nice and one of the people that use correct grammar so people can understand.... unlike the people that are like...
Uneducated teenager: hi gurlz if u like meh go 2 my den
So yeah :T Or people like: omg hai jammerz go 2 my den i just got a claw!!!! its super rare go now!!
What the pie smidgen?
Anyway...
A new video! Woo! I love these!


It's so sad that no one watches them :(
But some do! Yay for them!
Also, gems and tickets are now on all price tags, to be honest I never looked at price tags unless I wanna see the price :T
Wait I just found the prizes on Snowyclaw's Animal Jam Spirit!
 
Neat, non member and I love the spider hammock!

Hmm... :T Doesn't sound too good....I hope there's a kinda shop there! A party clothing shop XD Not too human o.o
 I kind of remember these... apparently, according to Snowy, there used to be an achievement! Cool XD
The polls are in Jamaa's oldest and popular lands- Crystal sands, Coral canyons and Jamaa Township!
 Cool! May 29 is my mum's birthday XD I'll take part =3
 *Sigh* Yes, I know...
 I know... but good to remind newer Jammers!
Double gems... fruit slinger! Not the best gem earner if you ask me :T

River race is back for the Summer! Yay! The arcade game should be coming back to stores too :)

Activities calendar... I doubt anyone looks at it these days though :T I use it when I'm bored XD
No idea what the item is, probably something in the Jam session.
AJHQ!! THAT PARTY COME OUT A MONTH AGO ! STOOOP DX
I want more fruits and veggies XD
Finally, clearance items for this update. You have 14 days to get 'em all!
I kinda hope the spooky party comes back soon... it brought the Halloween spirit in everytime!
And I want the cute Jellyfish hair XD I wanna look like my pet o3o
Well we know the Emerald birthstone is on clearance, that's it really :P
And finally, it's Summer at last!
Check out Jamaa township in full Summer spirit  ^o^
In about 20 minutes I will post the new item. Until then, Have fun in Jamaa!