(New message)
Subject review (reverse sequence)
Posted by
Nick Gammon
Australia (18,800 posts) bio
Forum Administrator
Date
Sun 15 Mar 2009 08:24 PM (UTC) [ quote
]
Message
Quote:
if messages == {} then
print ("no msg recorded")
Pretty close. In fact to test if the table is empty, do this:
if #messages == 0 then
print ("no msg recorded")
or, for tables which might have non-numeric keys:
if next (messages) == nil then
print ("no msg recorded")
- Nick Gammon
www.gammon.com.au, www.mushclient.com top
Posted by
AquaBrother
Brazil (18 posts) bio
Date
Sun 15 Mar 2009 04:13 PM (UTC) [ quote
]
Message
thx for the information xD
i tried to do so:
if messages == {} then
print ("no msg recorded")
else
for k, v in ipairs (messages) do
print (v) -- print this message
end -- for
end
But it dont seen to be working...
rofl, i wish i was not that much noob at programing, rofl...
If you could help again, i'd appreciate it... xD
top
Posted by
Nick Gammon
Australia (18,800 posts) bio
Forum Administrator
Date
Sun 15 Mar 2009 04:09 AM (UTC) [ quote
]
Message
Make a table. For example:
messages = messages or {} -- create table if not exist
table.insert (messages, new_message)
That will keep adding to the messages table. Now to get them back later:
for k, v in ipairs (messages) do
print (v) -- print this message
end -- for
- Nick Gammon
www.gammon.com.au, www.mushclient.com top
Posted by
AquaBrother
Brazil (18 posts) bio
Date
Sun 15 Mar 2009 03:41 AM (UTC) [ quote
]
Message
I'm trying to do a variable absorb information with a trigger... it's just like all the time someone send me a TELL MESSAGE, the variable copy the message to itself so i can see it later... the problem is, the variable can absorbe more than 1 message inside itself? i mean, if i receive like 10 TELL MESSAGENS, is there a way to put all the messagens inside the variable? Or i will have to do 10 variables?
Thx for your time xD top
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
1,212 views.
Reply to this subject
Start a new subject
  Refresh page
Go to topic:
(Choose topic)
Area Editor: Bug reports
Area Editor: General
Area Editor: News and updates
Area Editor: Suggestions
Area Editor: Tips and tricks
Dawn of Time: Administration
Dawn of Time: Configuration
Dawn of Time: Installing/compiling the server
Dawn of Time: New Dawn Muds Announcements
Dawn of Time: Playing
Dawn of Time: What is Dawn of Time (Dawn)?
Electronics: Microprocessors
Electronics: Operational Amplifiers
Forum: About
Forum: Announcements
Forum: Mailing other users
Forum: Problems
Forum: Registering
Forum: Searching
Forum: Subscribing
Forum: Suggestions
Forum: Test
Forum: Time zones / time display
Forum software: Administration
Forum software: Installation
MUDs: Announcements
MUDs: General
MUDs: MUD Design Concepts
MUSHclient: Announcements
MUSHclient: Beta testing
MUSHclient: Bug reports
MUSHclient: Development
MUSHclient: General
MUSHclient: Getting Started
MUSHclient: International
MUSHclient: Jscript
MUSHclient: Lua
MUSHclient: Miniwindows
MUSHclient: MXP and Pueblo
MUSHclient: Perlscript
MUSHclient: Plugins
MUSHclient: Python
MUSHclient: Suggestions
MUSHclient: Tips and tricks
MUSHclient: VBscript
MUSHclient: Wine
PennMUSH: Compiling the server
PennMUSH: Running the server
Programming: General
Programming: STL
Quilting: General
ROM: Compiling the server
ROM: Running the server
SMAUG: Commands
SMAUG: Compiling the server
SMAUG: Lua
SMAUG: Running the server
SMAUG: SMAUG coding
Search the forum
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )