Everything posted by Aprz
-
Remake of Black Jack
Aw, that's a shame. What host do you guys accept so people would be able to view and play the game? Bleh, I forgot about that. One of my family told me to make a black jack game and it has been awhile since I have played it so I don't remember so much of it. Somebody told me that if you have 5 cards, you automatically win which I am not sure if that is true. I'll fix that, but please tell me another free host I can use to share stuff I have made. :) EDIT: I guess for now, I will just display blackjack.js which is the important part. :)
-
Remake of Black Jack
Anyhow, I decided I would remake my Black Jack game since I was so sad I lost my first one. My computer died and I lost it. :( Click HERE to play my Black Jack game I made using JavaScript. Click HERE to view blackjack.js. *Links removed until I can find a host that Tip.It does allow. Problems... -Occasionally, the script needs to be stop by the user -Two or more of the same card may appear -Cards do not always display immediatly -Heavily relies on prompts, alerts, and confirms Future Additions... -Determine winner, loser, or tied -Money! -More graphics + animations -Score board -Music :) var cardNum = 0; var cardDraw = 0; var cardValue = 0; var cardTotal = 0; var user; var comp; document.write(" "); cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { cardValue = window.prompt("You have an ace! Would you like the value of your ace to be 1 or 11?"); if(cardValue == 1) { cardValue = 1; } if(cardValue == 11) { cardValue = 11; } else { cardValue = 1; } } if(cardTotal == 21) { alert("Black Jack!"); } if(cardTotal > 21) { alert("Busted!"); } cardTotal = cardValue; cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { cardValue = window.prompt("You have an ace! Would you like the value of your ace to be 1 or 11?"); if(cardValue == 1) { cardValue = 1; } if(cardValue == 11) { cardValue = 11; } else { cardValue = 1; } } cardTotal = cardTotal + cardValue; user = cardTotal; alert("The user card total is " + cardTotal + "."); if(cardTotal == 21) { alert("Black Jack!"); } if(cardTotal > 21) { alert("Busted!"); } while(cardDraw == 0) { cardDraw = confirm("Would you like to be hit?"); if(cardDraw == true) { cardDraw = 0; cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { cardValue = window.prompt("You have an ace! Would you like the value of your ace to be 1 or 11?"); if(cardValue == 1) { cardValue = 1; } if(cardValue == 11) { cardValue = 11; } else { cardValue = 1; } } cardTotal = cardTotal + cardValue; user = cardTotal; alert("The user total points is " + cardTotal + "."); if(cardTotal == 21) { alert("Black Jack!"); cardDraw = 1; } if(cardTotal > 21) { alert("Busted!"); cardDraw = 1; } } else { cardDraw = 1; } } document.write(" "); cardTotal = 0; cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { if(cardTotal > 10) { cardValue = 1; } if(cardTotal <= 10) { cardValue = 11; } else { cardValue = 1; } } if(cardTotal == 21) { alert("Black Jack!"); } if(cardTotal > 21) { alert("Busted!"); } cardTotal = cardValue; cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { if(cardTotal > 10) { cardValue = 1; } if(cardTotal <= 10) { cardValue = 11; } else { cardValue = 1; } } if(cardTotal == 21) { alert("Black Jack!"); } if(cardTotal > 21) { alert("Busted!"); } cardTotal = cardTotal + cardValue; comp = cardTotal; alert("The computer total points is " + cardTotal + "."); while(cardTotal < 17) { cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { if(cardTotal > 10) { cardValue = 1; } if(cardTotal <= 10) { cardValue = 11; } else { cardValue = 1; } } if(cardTotal == 21) { alert("Black Jack!"); } if(cardTotal > 21) { alert("Busted!"); } cardTotal = cardTotal + cardValue; comp = cardTotal; alert("The computer total points is " + cardTotal + "."); } if(user <= 21) { while(user > comp) { cardNum = Math.floor(Math.random() * 52 + 1); document.write(""); if(cardNum >= 1) { if(cardNum <= 13) { cardValue = cardNum; } } if(cardNum >= 14) { if(cardNum <= 26) { cardValue = cardNum - 13; } } if(cardNum >= 27) { if(cardNum <= 39) { cardValue = cardNum - 26; } } if(cardNum >= 40) { if(cardNum <= 52) { cardValue = cardNum - 39; } } if(cardValue >= 11) { if(cardValue <= 13) { cardValue = 10; } } if(cardValue == 1) { if(cardTotal > 10) { cardValue = 1; } if(cardTotal <= 10) { cardValue = 11; } else { cardValue = 1; } } if(cardTotal == 21) { alert("Black Jack!"); } if(cardTotal > 21) { alert("Busted!"); } cardTotal = cardTotal + cardValue; comp = cardTotal; alert("The computer total points is " + cardTotal + "."); } } document.write(""); document.write(""); Please leave behind comments and/or suggestions.
-
Has anyone tried the RSToolbar for Firefox?
I was intrested in that too and tried it out. I tis basicly a bunch of book marks to popular fan sites and the worlds and nothing more than that. You are better off right clicking the world and saving the link or however it goes to bookmark links lol (I forget).
-
Guide to Reporting & Sending Queries
Eh, those arn't copies of the player moderator guide lines.
-
LOTR Fake
That's funny. XD That's my first time seeing that. Your friendly neighborhood macro slayer, ~Aprzepioski
-
a pirate sig a just made
I like all the dithering. It is a nice signature. Good job. =D> Your friendly neightborhood macro slayer, ~Aprzepioski
-
Aprz Making Another Sig On MS Paint! =0
NOT DONE! A friend of mine has request that I make him a signature since he felt my last one was really good (by the way, my last signature is my current signature I am using). This what I got done so far. he request to be in the wilderness next to the runite rocks wearing santa and masors clothing (a type of clan, the clothing are black/shade/priest robes) and that was all he could have though of at the moment. His hair is a dirty blond that is short and he has skin that isn't so tanned. I decided that in the back, I'll put two player killers. One of them will be owning the other one and the other dying miserably. Then in the runite rocks, I'll add a small gem, and I'll add those dread deadly red spiders. After I get everything in, I'll start shading and adding some texture to the ground. Anyhow, I like to say also that many of my signatures are inspired by Misterxman and Helloimpoor and they are my heroes in signature making. Well, post some comments, suggestions, likes, dislike, and so on about this signature. Post away! ~Aprzepioski
-
what is your runescape mastercard commercial?
Noobs: 2k coins Rune axe: 20k coins Full saradom: 2.8 mil coins Yellow party hat: 165 mil coins Cutting trees in a cool suit around noobs: priceless ^Yes, having noobs arounds you do cost. "Ph33 2k pl0x."^ Later. ~Aprzepioski
-
Anti Macro Sig, looking hawt so far
I agree, but my brother insist. He says that there is joke between mods where they have what they call a mute stick which they use on other players to mute, but since it does not work on macroers, they hit the macroer with it. The original idea of his was to have the stick go through the macroer and show some wires and all, but the stick was too small and I couldn't write mute. Anyhow, get the joke? The don't use the mute stick to mute macroers, they use the mute stick to kill macroers. :mrgreen: I knew that might be a problem though, some people might not catch on. Oh well, death to macroers! Rawr! ~Aprzepioski
-
Anti Macro Sig, looking hawt so far
Here is a signature I am working on right now for my self. IT IS NOT DONE! The idea is you are suppose to see a macroer walking and behind him, you see a cool looking dude with this big piece of log that has been sort of fletch in to a pole and at the end of it, it says MUTE and it looks like the cool dude (of course a mod) is about to bash him. That idea came from my brother (figures, a mod joke). I started working a lot on MS Paint recently because of Helloimpoor and Misterxman who "inspired" me. I look at a lot of their work so you should notice that a lot of my work have similar lining or shading. Misterxman is to good though lol. XD Anyhow, right now, I am working on the macroer feet (his right leg, to our right) looks a little blocky and I am working on his hands too. After that, I'll get the moddish dude and then clean up some mess or add a little more detail like flowers or something. Then, of course, I'll put my name to the upper right. Post what you think so far, maybe look for mistakes or suggest some stuff. I'll update this thread once I finish the macroer and start working on the mod dude. Later. ~Aprzepioski
-
New New Pixel Signature, Aprzepioski
Thanks. I am learning more and more about pixel signatures everyday. I spent a lot of time on the grass and clouds lol. Hopefully my next signature will be better. I'll post them soon as I am almost done with it. Later. ~Aprzepioski
-
New New Pixel Signature, Aprzepioski
Yeah, I notice it was empty. Temporarily though of course. =p I'll add squirels, trees, water plants, weed, flowers, shrubs and a lot more. I made this at like 1 am in the morning (was to addicted). I'll show more later. ~Aprzepioski
-
NEW SIG. CAPS MAKE THINGS MORE FUN TO READ.
Those stickmen in the background are little bit violent. :shock: :roll: Very nice and funny. People will enjoy reading it and viewing it. Later. ~Aprzepioski
-
Some Old-Timey Maxiemumu SIGS. RATE THEM
They're okay, but I am not to crazy about them. ~Aprzepioski
-
New New Pixel Signature, Aprzepioski
I liked *named removed*'s borders on his signature so I tried making mine similar to his. In my last signature a week ago, I learned how to make grass. I read this great tutorial on how to make clouds on RuneScape Community (thanks to *named removed*). The guy who wrote the tutorial was born to make clouds. I tried to dither a lot of my stuff in here and I even made a small little lake after messing around for awhile. I am trying not to use outlining, dither my work, better shading, but less color. A lot of people complained about color in my last signature. Sorry to those of you who are blind from my last signature. =( I saved my work in parts in case I made a mistake because I am using MS Paint rather than PhotoShop. Here are what I had in parts (by the way, I got bored and made a dragon med randomly . It turns out great I think, lol.) Starting background Dragon Med Added a lake OMG! A Tree! and the first image you saw was just finishing touches after the tree. =p Please leave behind comments and/or suggestions. ~Aprzepioski *note: The person that showed me borders asked that I did not mention his name on other sites.
-
Signature - MS Paint
Ah, okay. ~Aprzepioski
-
Signature - MS Paint
Lol, okay. I'll take a look. =p Thanks. ~Aprzepioski
-
Signature - MS Paint
Hm, what should I do about the water? It didn't take me long to make, I did copy and past on cube and then change the size (a friend did that and his turned out nice). I messed up a lot on this signature lol. I gave it a go though and that's cool. I always thought the bottom of the sky was darker then the top? I got that mixed up? Later. ~Aprzepioski
-
Signature - MS Paint
I spent nearly 6 hours on MicroSoft Paint drawing this. No layers = Pain. It did not come out as great as I liked it to be, but I tried a lot of new things out and I wanted to see how good it would turn out. I added a border similar to *Name Removed*, he told me how he made water his style, I also tried making it so I would use no outlines to be a bit more realistic, and of course MicroSoft Paint is something I do not use commonly so that is sort of new (though I have made like two or three signatures from it before that didn't turn out bad). I will explain the signature even though the signature is really suppose to tell you everything, but I am not a good artist lol. The island behind is Crandor because you can see Crandor from Draynor Village. There is a willow tree behind what is suppose to be my character right now (I wear saradom kite, saradom platebody, saradom platelegs, rune hatchet, mime boots, mime gloves, mime mask, jester scarf, and a black cape). The red thing on Crandor is a lesser demon which is what you will see on that side of Crandor. There are some gulls around in the distance, I made them sort of look like they are arround the lesser demon looking for scraps, but they are to big. Of course I am standing on top of grass and near the grass is water. In the middle of the signature is a ship heading to Crandor (Dragon Slayer) and then of course I wanted a clear blue sky. I decided that at my angle, you can not see Port Sarim. Hm.. I think that is everything. I really thought this out lol. Hm, I think I made the mask to gray and scary, the hatcet looks odd, my hands are to small, the gulls are to big, and there is no parts of the willow tree in front of my character. Those are the mistakes I see whithin the signature right now. Rate me between 1-10, 1 being the absolute worst signature you have ever seen that it makes you go blind or 10 being the best you have ever seen. I just realized, I forgot the jester scarf and black cape. I'll add those later I guess. :( Please make some suggestion and/or leave behind comments. =p Thank-you. ~Aprzepioski
-
Zezima 99 cons party rocked!!!
It sounds like it was a lot of fun. To bad The Old Knight was not there. :( Maybe one day, I'll get the chance to congrats Zezima on 99 construction. Later. ~Aprzepioski
-
Bias =\
They didn't get rid of their message center. To read messages from Jagex go to... RuneScape > Read your messages from Jagex And to send a query, go to... RuneScape > Comment on our service > *Select the appropriate topic type* To send a URL to Jagex, complaint would be the appropriate topic type. Enjoy. ~Aprzepioski
-
Bias =\
Go to the advertising sites breaking Jagex rules and then in a query let Jagex be aware of that site so action may be taken against 'em. Make sure to give them a description of what rule they are breaking and also the direct URL to the site. That's what I do when I want something done :P I do not like it when people cheat in the game. ~Aprzepioski
-
What is the closest you've come to riches?
When I was around level 60 (which was long ago) a dude offer to sell me a party hat for 2 mil and I had several million at the time. That actually happen to a lot of us I believe and we just thought that party hats were a waste of money. Now that they have raised in price, I regret. I should have bought party hats simply because they look cool, but I was to stuborn with my gp. :( ~Aprzepioski
-
I'm stunned! Awesome trade!
Congrats! I don't find to many good things on the ground except maybe a spare spade or two which is what I am usually just fine with. Enjoy your new items. ~Aprzepioski
-
Raise the GP Cap on P2P to 100 Bil
Nice idea. I like it. Supported! ~Aprzepioski OFFTOPIC: Nice sig :P seen it on RuneVillage before.