Hello perlmonks. I apologize for my lack of knowledge here. I am a hobby programmer, not a professional. I have been writing a MOO (multi user dungeon game) and I am having problems figuring out what I shall do with objects within the game. right now I have a single room with objects. The problem is not making it known to the player that the objects are there but simply how to interact with the objects.

#!/usr/local/bin/perl print"\n"; print "#---#--#-####-#----####-#####---#--#---####\n"; print "-#-##-#--####-#----#----#---#--#-##-#--####\n"; print "--#--#---####-####-####-#####-#---#--#-####\n"; print "\n"; print "|The Lounge|\n"; print "You are in a room littered with lines of text emitting from var +ious computer connections from around the world. Above you hangs a dr +oning chandelier which seems to dim and increase lighting every so of +ten. The pleasant sound of a Jazz-Fusion band is heard here.\n"; print "You can see a wooden table here. You can SIT at the table. You +see a 1970's Jukebox here.\n"; print "You can go OUT.\n";

That's what I have... The objects describes as the Table and Jukebox are what I would like to be able to interact with. The question is what kind of syntax should I use?

I would like something like this sit table = print "You pull up a chair and sit at the table/";

In reply to Perl Moo. by Dipseydoodle

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.