|
Still trying to get ahold of coding knowledge
|
Reply to this subject
Start a new subject
 
Refresh page
| Posted by |
Jordan
(14 posts) bio
|
| Date |
Thu 02 Nov 2006 04:24 PM (UTC) [ quote
] |
| Message |
If r = 0
then cast blind
else cast 'cure blind'
how would i code something like this? | top |
|
| Posted by |
Zeno
USA (2,868 posts) bio
Moderator |
| Date |
Reply #1 on Thu 02 Nov 2006 05:05 PM (UTC) [ quote
] |
| Message |
| What scripting language are you working in? |
Zeno McDohl,
Owner of Bleached InuYasha Galaxy
http://www.biyg.org | top |
|
| Posted by |
Jordan
(14 posts) bio
|
| Date |
Reply #2 on Thu 02 Nov 2006 08:48 PM (UTC) [ quote
] |
| Message |
| Lua i think. So i have to create a script in order to do it? | top |
|
| Posted by |
Nick Gammon
Australia (18,801 posts) bio
Forum Administrator |
| Date |
Reply #3 on Fri 03 Nov 2006 05:29 AM (UTC) [ quote
] Amended on Fri 03 Nov 2006 05:33 AM (UTC) by Nick Gammon
|
| Message |
Well, a minor bit of scripting is needed to make decisions, however it can be done "inline" in your trigger or alias.
Assuming the trigger or whatever-it-is matches, your code would look something like this:
if r == 0 then
Send ("cast blind")
else
Send ("cure blind")
end -- if
The test of equality is "==" not "=", as "=" is used for assignment, eg.
For this to work perfectly you need to establish a value for the variable "r".
You need to set the trigger or whatever you are making to "send to script" so that the script commands are executed as a script, and not just sent straight to the MUD. |
- Nick Gammon
www.gammon.com.au, www.mushclient.com | 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,701 views.
Reply to this subject
Start a new subject
 
Refresh page
top
Comments to:
Gammon Software support
Forum RSS feed ( http://www.gammon.com.au/rss/forum.xml )