Ass Finger.Zitat:
Zitat von macca-hacker
Printable View
Ass Finger.Zitat:
Zitat von macca-hacker
you want a title change?Zitat:
Zitat von TheMysteriousThug
Yay Im almost done with Avalanche V1!! but my new BG isnt working....
Not one bit. I like my title. :DZitat:
Zitat von macca-hacker
well stfu then :D im only kidding btwZitat:
Zitat von TheMysteriousThug
In a Past Life...
http://images.blogthings.com/pastlif.../past-life.jpg
You Were: A Gentle Spice Trader.
Where You Lived: Boliva.
How You Died: Killed in Battle.
Who Were You In a Past Life?
http://www.blogthings.com/pastlifegenerator/
is that u in ur avvy?
In a Past Life...
You Were: A Brave Assassin.
Where You Lived: Russia.
How You Died: The Plague.
In a Past Life... http://images.blogthings.com/pastlif.../past-life.jpg You Were: A Forlorn Cannibal.
Where You Lived: Romania.
How You Died: Killed in Battle.
silent hill was coo
yesZitat:
Zitat von MaSt3r_ShAk3
_________________________ _________________
http://www.blogthings.com/personalitydisorderquiz/
You May Be a Bit Narcissistic ...
Yeah, you're a bit fixated on yourself. But you're so great, you can't help it! You're a bit obsessed with your own fame and success. And you'll push past anyone who stands in your way.
hey MM, you gonna vote for my sig in the contest...? :rolleyes: pleeasseee :pZitat:
Zitat von Midnight Malevolence
are you gunna kill yourself?Zitat:
Zitat von Midnight Malevolence
sure i willZitat:
Zitat von madsoul
but one of those quizzes just told me that
You're reliably dishonest, and it's not a big deal to you
It's all about what you want - screw everyone else
You'll protect yourself at all costs
No wonder no one truly trusts you!
hey, mm should remeber who got him unbanned ;)Zitat:
Zitat von madsoul
Thanks for the sig Soul..It ownzz..
http://img195.imageshack.us/img195/5...nighsig5ml.jpg
thx :)Zitat:
sure i will
i like.Zitat:
Zitat von Zx30
lol! no problem! :DZitat:
Zitat von Zx30
GAH! Lua is annoying right now...
Zitat:
Zitat von macca-hacker
does that answer your question.Zitat:
Zitat von me when i was talking to turbocat
Zitat:
Zitat von Midnight Malevolence
no....Zitat:
Zitat von Midnight Malevolence
I AM GOING TO THROW MY COMPUTER OFF OF A 10 STORY BUILDING IF I DONT GET THIS TO WORK
what? maybe i can help?Zitat:
Zitat von MaSt3r_ShAk3
Well im going to have it the old way. but u know my game right? Okay well I want it to that the sprite or the spikes dont blink (they do because they are being re-blitted) i had messed with it so the code didnt work but now im having it so every time a spike hits the ground the sprite blinks... :dry:Zitat:
Zitat von macca-hacker
I dont want it because it inturrupts and slows down the flow of the game
hmmm, so its just basic movement? 1 image?Zitat:
Zitat von MaSt3r_ShAk3
well yeah and the falling spikes (theres 2 of em but it was the same when there was one)Zitat:
Zitat von macca-hacker
ROFLZitat:
Zitat von macca-hacker
this is the last quiz that i'll post just cause it's funny
http://www.blogthings.com/gaychildhoodiconquiz/
post the code...Zitat:
Zitat von MaSt3r_ShAk3
Zitat:
Zitat von macca-hacker
Code:System.usbDiskModeActivate()
black = Color.new(0,0,0)
red = Color.new(255,0,0)
white = Color.new(255,255,255)
cursorx = 240
cursory = 220
life = 1
y = 0
y2 = 0
speed = 3
score = 0
spike = Image.load("spike.png")
spike2 = Image.load("spike.png")
bg = Image.load("background.png")
stick = Image.load("dante.png")
death = Sound.load("automatic_gun.wav", false)
function restart()
cursorx = 240
cursory = 222
life = 1
y = 0
speed = 3
score = 0
screen:blit(cursorx, cursory, stick)
end
function printscore()
screen:print(160, 130, "Your Score was: " .. score, black)
screen.flip()
screen.waitVblankStart(120)
end
function blitspike()
screen:blit(x, y, spike)
screen:blit(x2, y2, spike)
end
blitdante()
x = math.random(480 - spike:height())
x2 = math.random(480 - spike2:height())
Music.playFile("electric.it", true)
while true do -- MAIN LOOP
screen:clear()
screen:blit(0,0,bg,false)
blitspike()
pad = Controls.read()
aX = pad:analogX()
screen:print(0, 240, "Speed: " .. speed, black)
if not paused then
screen:print(0, 250, "UNPAUSED", white)
y = y + speed
if y + spike:height() >= 272 then
score = score + 1
speed = speed + .05
y = 0
x = math.random(480 - spike:height())
screen.flip()
System.sleep(100)
end
y2 = y2 + speed
if y2 + spike2:height() >= 272 then
score = score + 1
speed = speed + .05
y2 = 0
x2 = math.random(480 - spike2:height())
screen.flip()
System.sleep(60)
end
cursory78 = cursory + 39 --This is the bottom left-hand corner of player1
cursorx23 = cursorx + 52 --This is the top right-hand corner of player1
y32 = y + 32 --This is the bottom left-hand corner of enemy1
x32 = x + 33 --This is the top right-hand corner of enemy1
y32a = y2 + 32 --This is the bottom left-hand corner of enemy2
x32a = x2 + 33 --This is the top right-hand corner of enemy2
if (((cursorx23 >= x) and (cursorx <= x32)) and ((cursory78 >= y) and (cursory <=
y32))) then
local sound = death
voice = sound:play()
printscore()
restart()
end
if (((cursorx23 >= x2) and (cursorx <= x32a)) and ((cursory78 >= y2) and (cursory
<= y32a))) then
local sound = death
voice = sound:play()
printscore()
restart()
end
if pad:left() then
if cursorx > 0 then
cursorx = cursorx - 5
end
end
if pad:right() then
if cursorx < 456 then
cursorx = cursorx + 5
end
end
if aX < -23 then
if cursorx > 0 then
cursorx = cursorx - 5
end
end
if aX > 23 then
if cursorx < 456 then
cursorx = cursorx + 5
end
end
if pad:select() then
screen:save("screenshot.png")
end
if pad:start() then
break
end
screen:blit(cursorx, cursory, stick)
screen:print(2, 20, "Score: " .. score, black)
else
screen:print(0, 250, "PAUSED", red)
end
if pad:cross() and pad ~= oldpad then if paused then paused = false else
paused = true end end
oldpad = pad
screen.flip()
screen.waitVblankStart()
end
wtf?!? typhoon of the total dweeb??
woah you lost me...Zitat:
Zitat von MaSt3r_ShAk3
some of the stuff in there i dont even use... have to clean it up a bit
I need a good BG can someone make me one? like a cave-like or hell-ish one
dweeb
what?! i used the magic wand in photoshop to get rid of the white behind my images and its still there....
whos this guy?Zitat:
Zitat von Typhoon of the Dweeb
good questionZitat:
Zitat von macca-hacker
[edit] it's vanden9