tfe-1.0/area/
tfe-1.0/files/
tfe-1.0/logs/
tfe-1.0/logs/immortal/
tfe-1.0/logs/mob/
tfe-1.0/logs/object/
tfe-1.0/logs/player/
tfe-1.0/logs/room/
tfe-1.0/notes/clans/
tfe-1.0/player/
tfe-1.0/prev/
tfe-1.0/prev/area/
tfe-1.0/prev/player/
tfe-1.0/prev/rooms/
tfe-1.0/rooms/
tfe-1.0/src-gc/
tfe-1.0/src-msvc/
tfe-1.0/src-unix/
tfe-1.0/www/
tfe-1.0/www/html/
#include <sys/types.h>
#include <stdio.h>
#include <syslog.h>
#include "define.h"
#include "struct.h"


void do_climb( char_data* ch, char* argument )
{
  if( *argument == '\0' ) {
    send( ch, "What do you want to climb?\n\r" );
    return;
    }
 
  send( ch, "Whatever that is you can't climb it.\n\r" );

  return;
}


void do_enter( char_data* ch, char* argument )
{
  /*
  exit_data *exit;

  if( *argument == '\0' ) {
    send( ch, "What do you want to enter?\n\r" );
    return;
    }
  
  if( ( exit = ch->in_room->exit[ DIR_EXTRA ] ) == NULL
    || !is_name( argument, exit->name ) ) {
    send( "Whatever that is you are unable to enter it.\n\r", ch );
    return;
    }

  move_char( ch, DIR_EXTRA, FALSE );
  */
  return;
}


void do_move( char_data* ch, char* argument )
{
  if( *argument == '\0' ) {
    send( ch, "What do you want to move?\n\r" );
    return;
    }
 
  send( ch,
    "Whatever that is trying to move it does nothing interesting.\n\r" );

  return;
}

 
void do_pull( char_data* ch, char* argument )
{
  if( *argument == '\0' ) {
    send( ch, "What do you want to pull?\n\r" );
    return;
    }
 
  send( ch,
    "Whatever that is pulling it does nothing interesting.\n\r" );

  return;
}


void do_push( char_data* ch, char* argument )
{
  if( *argument == '\0' ) {
    send( ch, "What do you want to push?\n\r" );
    return;
    }
 
  send( ch,
    "Whatever that is pushing it does nothing interesting.\n\r" );

  return;
}


void do_read( char_data* ch, char* )
{
  send( "Whatever that is you can't read it.  Perhaps you should try looking at it.\n\r", ch );
  
  return;
}