Register forum user name Search FAQ

Gammon Forum

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.

Due to spam on this forum, all posts now need moderator approval.

 Entire forum ➜ MUSHclient ➜ Suggestions ➜ Multiple choices

Multiple choices

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


Posted by David B   USA  (80 posts)  Bio
Date Sun 06 Jul 2003 08:34 AM (UTC)
Message
I have this alias, that sends info to a variable, BUT I also need it to send the information directly to the mud, using send immeadiate. My Suggestion, When you click the drop down to select where you want to send the info, instead, have another window open, that lets you click multiple things at once.

I.E. Send Immeadiately, variable, and Lets say Notepad(new) just for grins and giggles.

I figure tou'd make a new window box, have all the things you have now with a [] next to them. If you wanted Variable, and send immeadiately you'd click on the box [x] and it'd be selected. This would make be very helpful I think.

My code(with a LOT of Nicks help) to fame:

sub OnAutoCombo (TriggerName, TriggerLine, arrWildCards)
dim AutoCombo
AutoCombo = split (arrWildCards (1))
Dim i, attack
for i=lbound (AutoCombo ) to ubound (AutoCombo )
Select Case AutoCombo (i)
case "rp" attack = "punch right"
case "lp" attack = "punch left"
case "s" attack = "sweep"
case "r" attack = "roundhouse"
case else attack = "" ' unknown attack type
End Select
if i = ubound (AutoCombo ) then
world.send "throw " + world.getvariable ("attacker") + " down"
else
world.send attack + " " + world.GetVariable ("attacker")
end if
next
end sub
Top

Posted by Poromenos   Greece  (1,037 posts)  Bio
Date Reply #1 on Sun 06 Jul 2003 02:39 PM (UTC)
Message
You can just send to scripting, and use like:
Send "mystuff"
Setvariable "myvar", "mystuff"

Vidi, Vici, Veni.
http://porocrom.poromenos.org/ Read it!
Top

Posted by Nick Gammon   Australia  (23,173 posts)  Bio   Forum Administrator
Date Reply #2 on Sun 06 Jul 2003 08:41 PM (UTC)
Message
I agree with Poromenos on this one. The "send to script" gives you all the flexibility you really need.

For instance, you could send one thing to the world and another to notepad, and a third thing to a variable. Check boxes wouldn't really cover that. eg.


Send "%1"
SetVariable "myvar", "%2"
AppendToNotepad "Nick's window", "%3" + vbcrlf
If "%1" = "foo" Then
  EnableTrigger "bar", 1
End If


That is very flexible.

- Nick Gammon

www.gammon.com.au, www.mushclient.com
Top

Posted by David B   USA  (80 posts)  Bio
Date Reply #3 on Mon 07 Jul 2003 07:32 AM (UTC)
Message
Then you could just world.sendimmeadiate from the script, ya that could work I suppose, that whole send to script thing, don't quite understand it, I guess you could say thats because I'm kinda old school, having been using mushclient since like very early on.

My code(with a LOT of Nicks help) to fame:

sub OnAutoCombo (TriggerName, TriggerLine, arrWildCards)
dim AutoCombo
AutoCombo = split (arrWildCards (1))
Dim i, attack
for i=lbound (AutoCombo ) to ubound (AutoCombo )
Select Case AutoCombo (i)
case "rp" attack = "punch right"
case "lp" attack = "punch left"
case "s" attack = "sweep"
case "r" attack = "roundhouse"
case else attack = "" ' unknown attack type
End Select
if i = ubound (AutoCombo ) then
world.send "throw " + world.getvariable ("attacker") + " down"
else
world.send attack + " " + world.GetVariable ("attacker")
end if
next
end sub
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,332 views.

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

Go to topic:           Search the forum


[Go to top] top

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