Skip to content
View in the app

A better way to browse. Learn more.

Tip.It Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Aprz

Members
  • Joined

  • Last visited

Everything posted by Aprz

  1. 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. :)
  2. 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.
  3. 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).
  4. Eh, those arn't copies of the player moderator guide lines.
  5. Aprz replied to put_2_death's topic in Art and Media
    That's funny. XD That's my first time seeing that. Your friendly neighborhood macro slayer, ~Aprzepioski
  6. I like all the dithering. It is a nice signature. Good job. =D> Your friendly neightborhood macro slayer, ~Aprzepioski
  7. 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
  8. 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
  9. 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
  10. 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
  11. 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
  12. 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
  13. 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
  14. They're okay, but I am not to crazy about them. ~Aprzepioski
  15. 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.
  16. Ah, okay. ~Aprzepioski
  17. Lol, okay. I'll take a look. =p Thanks. ~Aprzepioski
  18. 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
  19. 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
  20. 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
  21. Aprz replied to Faux's topic in General Discussion
    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
  22. Aprz replied to Faux's topic in General Discussion
    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
  23. 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
  24. 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
  25. Nice idea. I like it. Supported! ~Aprzepioski OFFTOPIC: Nice sig :P seen it on RuneVillage before.

Important Information

By using this site, you agree to our Terms of Use.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.