View Single Post
  #1  
Old 12-16-2011, 02:36 AM
khortez khortez is offline
PrototypeX
khortez's Avatar
Join Date: Dec 2008
Posts: 91
khortez will become famous soon enough
Looking for opinons.

As title says, I'm just looking for opinons on this code. If it's unreadable (mainly), takes too much memory whatever. (So long as it's helpful of course..)

Take note, i might ask questions.

PHP Code:
//#CLIENTSIDE
function onCreated(){
this.boots false;
this.speed 2;
}

function 
onKeyPressed(codekey){
if(
key == "b"){

if(
this.boots == false){

this.boots true;
}

else if(
this.boots == true){

this.boots false;
}

if(
this.boots == false){
player.chat "Boots off!";
}

else if(
this.boots == true){

player.chat "Boots on!";
setTimer(0.05);
}
 }
  }


  function 
onTimeout() {
if (
this.boots == true) { 
  for ( 
temp.key 0key 4key++) { 
                                   
   if(
keydown(key)){ 
    
player.+= vecx (key) * this.speed
    
player.+= vecy (key) * this.speed
                                
  } 
}  
  
setTimer(0.05); 
  }
 } 
Reply With Quote