Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Entire forum
➜ MUSHclient
➜ Perlscript
➜ GetCommandList ---- how to use this in perlscript
GetCommandList ---- how to use this in perlscript
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Databug
(3 posts) Bio
|
Date
| Mon 08 Jan 2007 10:49 AM (UTC) Amended on Mon 08 Jan 2007 08:04 PM (UTC) by Databug
|
Message
| I'm having trouble using this function, the example given in the helpfile is confusing.
All I want it to do is something simple. Just make a variable equal it.
$lastcommand = $world->GetCommandList(1);
This sadly is not working. Could someone be kind of enough to tell me the correct syntax of this function. | Top |
|
Posted by
| Nick Gammon
Australia (23,102 posts) Bio
Forum Administrator |
Date
| Reply #1 on Mon 08 Jan 2007 07:33 PM (UTC) |
Message
| GetCommandList returns a variant array. This seems particularly hard to use the way the Perl scripters have implemented the Perl interface. See the example here:
http://www.gammon.com.au/scripts/doc.php?function=GetCommandList
Based on that example, maybe this would work for you:
foreach $item (Win32::OLE::in ($world->GetCommandList (1)))
{
$lastcommand = $item;
}
There may be a simpler way, I am not enough of a Perl scripting expert to know it.
|
- Nick Gammon
www.gammon.com.au, www.mushclient.com | Top |
|
Posted by
| Databug
(3 posts) Bio
|
Date
| Reply #2 on Mon 08 Jan 2007 08:15 PM (UTC) |
Message
| Ha! Well I'll try look in variant arrays and see exactly how it works.
But your example works perfectly, thanks alot. | 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.
15,963 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top