Experience, the coder should be very good and fast if not patient. -- X
Maturity, the coder must understand what I want from him. -- X
Trust, I must be able to trust him with my source. -- X
Ability to code once without the source, so that I can prove that you are very good. -- X
Experience: I coded some of the beginning stages of the upcoming BYOND Game (if upcoming at all...) Air Gear.
I coded some games for SpecsTeam (Mage Arena, ShyGuy Chatterz)
I'm only 15, but I have a basic understanding of C++ and C#. I'm an ametuer Pixel Artist, but I prefer coding over Iconning any day.
Maturity: As said above, I'm only 15. I'm still finding out life exactly and I like video games. I'm not sure if you'd call me "mature" <_<... But I'm probably more mature than most BYOND Members...
Trust: I've had the Air Gear source for a little over a month... I just keep it laying there on my Desktop. << Not like I have anything against anyone or anything, but I haven't really even thought about given it out... Just because I haven't deleted it doesn't mean I'm not irresponsible.
Ability: I've had to do that for the Air Gear codes...
Sample:
Here's a bit from my old days, when I tried to re-create the Portal System from Valve's "Portal"
- Code: Select all
mob/var
speed
#define var/speed
#define DEBUG
proc
Gravity(var/mob/per)
if(per.dir == SOUTH) //Falling.
if(per.inair == 1)
var/turf/check = locate(per.x,per.y-1,per.z)
if(check.density == 1)
per.inair = 0
return
else
per.loc=locate(per.x,per.y-1,per.z)
sleep(2)
Gravity(per)
else
return 0


