Everything posted by Korla
-
Dumbledore or Yoda?
well, Wyrm said it wouldn't be like comparing apples andoranges, he kinda used that metaphor to show something different :) anyway, I'd go with magic, but as non-existing as the chance they'd ever fight is, as non-existing will my reasons on these boards be...you'll just have to live with; "magic is magic" :P
-
Oh how I love to gloat. :D
grats :) was this ḫ̦̉̉gstadiet? not that it matters, but if it was, I do hope you've chosen to do Naturvetenskap on Gymnasiet ;)
-
New Sig Complete
it has a border right now, if you use subBlack anyway. also, the spinners spin both ways, freaky :) but do get rid of them ;) and I also agree with Nadril, inverting it might look better.
- It worked!
-
I'm 18 today!!!
grats, I remember my 18th birthday...umm...wait, no, I don't ;) get drunk man :P
-
Advertisment Contest, check out the rs rewards inside!
locked it, please make another post in the Media Market if Nadril's post didn't deter you froo your chosen path ;)
-
What are you living for?
I live for...well, not much, but just to see what, if anything, I can be the best in the world at :P so ARENAScape is done :) now maybe soccer...or Mathematics, certain things are better thatn others... ooh, also, ofcourse, to have as much fun as possible while waiting to get nr 1 again :) I try not to get power-hungry and forget to have fun, which is a problem I've noticed in many others.
-
Rate My New Sig
hmm, I think the index finger and pinky :) should be more brighter, I don't get the light as it is now. also, try to maybe make the shades more separated, the darkest ones maybe a little darker. also, I don't think you more more than 4 colours, maybe 3 with AA. but I like it :)
-
looking for sum 1 to make me a pixel...
requests go on the media market
-
What do Ya'll Think? My First shot at Pixel.
I think the linework looks top-notch. now try an color it so we can give more CC :)
-
Selling beautiful World of Warcraft sig
I'll lock this for you, then :)
-
When does your school get out??
yup, graduation is close :)
-
'Nother one of those pixel thingies
I do! :P yea, well, the face looks only slightly different, I know you can do it better, that's all, it looks ok.
-
NEW Pixel Wallpaper!
looks great, 2pac, maybe abit too perfect, I mean, nothing on those houses make it look like they've been used, but it's a style, ust looks abit too...shiny :) looks great, though.
-
'Nother one of those pixel thingies
awesomeness. absolutely brilliant. now, some crits: the dolphin statue is abit too dull and grey IMO to take up so much place in this picture, it stands out as the eyecatcher when you instead could have that beautiful sunset as the eyecatcher. the faces look really out of place, it looks, to me, like you could have done a better job on them, their faces are a completely different style from the rest. also, I think you should lose the black outline on the tire, other than that, it's bloody amazing. great job, now, do another one :D
-
Best ever death scenes
Because big explosions and hand to hand combat and guns are cool. Watching some girl kill herself isnt. I don't want a death scene to be "beautiful," (which none are) I want it to be "FRIGGN SWEET!" gah, where is this world a-heading...
-
New sig (look)
hey, the thing with this new media board is that you don't have to post only sigs you can use on these boards, just show us your best stuff instead :) nice sig, btw, only thing is the colours don't really work for me. They don't really suit the rest of the image IMO. They make me think of wood, but the render does not.
-
Best ever death scenes
come on people, what level is this? damn action deaths...how are they good in ANY way? noone's even mentioned the beautiful death scene in The Rules of Attraction. This girl lights candles next to a bathtub, steps in naked with a razor in her hand. She slits her vrist and the tub water changes color to red. Amazing scene.
-
.: Shadow's siggy pins! New: The Everything Siggy :.
what a silly thing to do...bumping this topic... *locked*
-
New .. Sig?
Love it, I can so totally see Sean in that :)
-
Is it possible
no, there isn't, really. You have to pixel it over again, you should save one version without the text if you're using paint. the way most programs do it, however, is by having layers, so the text is on its own layer, unfortunately, paint doesn't have that :)
-
Java programming question
because there are zillions of them :) you see, there are 15 digits at the end, many of which have 5 possible values, it makes for a heck of alot of images, I tell you :D anyway, I fixed that by changing it from an applet to a javax.swing program instead, odesn't matter to me, it's just for school anyway, and this way it looks so much better :P
-
Java programming question
well, fixed that error: import java.awt.*; import java.applet.*; import java.net.MalformedURLException; import java.net.URL; public class Face extends Applet { Image image; public void init() { try{ image = getImage(new URL("http://www1.cs-manager.com/data/face.php?id=141315101550003")); }catch(MalformedURLException e){System.out.println("Bad link...");} } public void paint(Graphics g) { g.drawImage(image, 0, 0, this); } } but now I get another error: if anyone's interested, I fixed it, using: try{ image = Toolkit.getDefaultToolkit().getImage(new URL("http://www1.cs-manager.com/data/face.php?id=" + gender + skinc + eyet + eyec + eyebt + eyebc + hairt + hairc + glasst + glassc + beardt + beardc + mouth)); }catch(MalformedURLException e){System.out.println("Ful lÃÆÃâÃâänk...");}
-
Java programming question
import java.awt.*; import java.applet.*; import java.net.*; public class Face extends Applet { Image image; public void init() { image = getImage(new URL("http://www1.cs-manager.com/data/face.php?id=132236301510113")); } public void paint(Graphics g) { g.drawImage(image, 0, 0, this); } } gets me this error: I use BlueJ btw. What am I doing wrong? :oops:
-
Java programming question
hey rick, knew I could trust you :) I am not making the applet for the same webpage the images come from or anything like that, I need them to be taken from an anohter place on the web, so the second one. what packages do I need? java.net, anything else?