ID:181919
 
I just visited byond after a long time of idleness just to see if there were any reductions in the amount of mess and the creation of moar rips. Looks like there is still over 9000 empty naruto games.

And if anyone is interested in making a new shooter game for byond then i might be interested to help, i can do some coding, mapping and drawing and have been on byond for few years.


kthxbye<3
Gogeta126 wrote:
if anyone is interested in making a new shooter game for byond then i might be interested to help, i can do some coding, mapping and drawing

Well, post what you're capable of and we'll see if we can work something out.
In response to SuperAntx
Stuff that works, but aint necesserily correct.

aka old coding

var
scoreblue = 0
scorered = 0
scoretowin = 10


proc
endgame()
if(scorered == scoretowin||scoreblue == scoretowin)
world<<"<center><b><Font color = green><font size = 1>Winning score reached! Congratulations winning team!"
scorered = 0
scoreblue = 0
world<<"<center><b>Restarting the match in 5...."
sleep(10)
world<<"<center><b>Restarting the match in 4...."
sleep(10)
world<<"<center><b>Restarting the match in 3...."
sleep(10)
world<<"<center><b>Restarting the match in 2...."
sleep(10)
world<<"<center><b>Restarting the match in 1...."
sleep(10)
world<<"<center><b><font color = green> GO! GO! GO!"
world<<'charge.wav'
for(var/mob/M)
if(M.team == "blue"&&M.client)
M.loc = locate(5,5,1)
if(M.team == "red"&&M.client)
M.loc = locate(143,143,1)
scorered = 0
scoreblue = 0
else


proc
showscores()
world.status = "<B><font size = -2><font color = red>Red team: [scorered]</font> <font color = blue>Blue team: [scoreblue]</font>"
sleep(100)
showscores()


Think im gonna go back to playing with DM... might help me with studying different languages in future studying..
In response to Gogeta126
You should definitely work on improving your skills; you aren't the worst, though there's definitely room for improvement.
In response to Gogeta126
Gogeta126 wrote:
            for(var/mob/M)
if(M.team == "blue"&&M.client)
M.loc = locate(5,5,1)
if(M.team == "red"&&M.client)
M.loc = locate(143,143,1)
scorered = 0
scoreblue = 0
else //What?


Have any pixel art you'd like to show?
In response to SuperAntx
SuperAntx wrote:
Gogeta126 wrote:
>           for(var/mob/M)
> if(M.team == "blue"&&M.client)
> M.loc = locate(5,5,1)
> if(M.team == "red"&&M.client)
> M.loc = locate(143,143,1)
> scorered = 0
> scoreblue = 0
> else //What?

Have any pixel art you'd like to show?

Else nothing. Just a useless line that i forgot to remove.

Pixel art... i fail horribly especially without a base but yeah, for a pre-beta im fine with it >_>

I forgot how to add images.... let me think....
Photobucket - pre-beta-berreta
Photobucket - death note

Photobucket - a view-from-top base - quickly drawn as i needed a basefor testing

These are just things i made for myself to use, its not "art" just quickly drawn for the sake of having an icon.
I can also GFX

Photobucket - For some game in the past as far as i remember.

Photobucket - photoshopped my friend and yes, he asked me to do that.

I can do a little of everything but now i'll concentrate on coding.
In response to Jeff8500
Jeff8500 wrote:
You should definitely work on improving your skills; you aren't the worst, though there's definitely room for improvement.

Your mudkipz skills still impress me <3

I'll try to work on coding now since i got a lot of time, altough it would be nice if i could work alongside someone. It would help me if i would be led by someone more experienced.