Hope someone can help me with this thanks!!!! 
  
  
try This 
  
atcommand.h+ /*==========================================+ * Auras personalizadas+ *------------------------------------------*/+ACMD(aura)+{+	   struct map_session_data *pl_sd = 0;+	   int type = 0;++	   if (!message || !*message || sscanf(message, "%d %[^n]", &type, atcmd_player_name) < 2)+	   {+			   if (!message || !*message || sscanf(message, "%d", &type) < 1)+			   {+					   clif->message(fd, "Please, enter at least an option (usage: @aura  ).");+					   return -1;+			   }++			   atcmd_player_name[0] = 0;+			   pl_sd = sd;+	   }++	   if( pl_sd != sd )+	   {+			   if ((pl_sd = map_nick2sd(atcmd_player_name)) == NULL)+					   return -1;+	   }++	   sprintf(atcmd_output, "Current Aura: %d", pl_sd->status.aura);+	   clif->message(fd, atcmd_output);++	   pl_sd->status.aura = type;+	   pc_setglobalreg(pl_sd,"USERAURA",type);++	   pc_setpos(pl_sd, pl_sd->mapindex, pl_sd->bl.x, pl_sd->bl.y, 3);++	   return 0;+}