[Home] [Downloads] [Search] [Help/forum]


Register forum user name Search FAQ

Gammon Forum

[Folder]  Entire forum
-> [Folder]  MUSHclient
. -> [Folder]  Lua
. . -> [Subject]  Add information to variable

Add information to variable

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page


Posted by AquaBrother   Brazil  (19 posts)  [Biography] bio
Date Sun 15 Mar 2009 03:41 AM (UTC)
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
[Go to top] top

Posted by Nick Gammon   Australia  (22,975 posts)  [Biography] bio   Forum Administrator
Date Reply #1 on Sun 15 Mar 2009 04:09 AM (UTC)
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
[Go to top] top

Posted by AquaBrother   Brazil  (19 posts)  [Biography] bio
Date Reply #2 on Sun 15 Mar 2009 04:13 PM (UTC)
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
[Go to top] top

Posted by Nick Gammon   Australia  (22,975 posts)  [Biography] bio   Forum Administrator
Date Reply #3 on Sun 15 Mar 2009 08:24 PM (UTC)
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
[Go to top] 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.


10,921 views.

It is now over 60 days since the last post. This thread is closed.     [Refresh] Refresh page

Go to topic:           Search the forum


[Go to top] top

Quick links: MUSHclient. MUSHclient help. Forum shortcuts. Posting templates. Lua modules. Lua documentation.

Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.

[Home]


Written by Nick Gammon - 5K   profile for Nick Gammon on Stack Exchange, a network of free, community-driven Q&A sites   Marriage equality

Comments to: Gammon Software support
[RH click to get RSS URL] Forum RSS feed ( https://gammon.com.au/rss/forum.xml )

[Best viewed with any browser - 2K]    [Hosted at HostDash]