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
➜ VBscript
➜ increasement of dim
It is now over 60 days since the last post. This thread is closed.
Refresh page
| Posted by
| Simon
Sweden (39 posts) Bio
|
| Date
| Fri 10 Aug 2001 09:52 PM (UTC) |
| Message
| sub AddDodgeS (strTriggerName, strLine, arrWildCards)
dim dodgeS = world.getvariable ("dodgesuccess")
dodgeS = dodgeS + 1
world.setvariable "dodgesuccess", dodgeS
end sub
How come this won't work? guess it's something with the dodgeS = dodgeS + 1 or something?
Please help :)
/Simon |
- "Where do you live, Simon?"
- "I live in the sick and wounded, doc."
Session 9 | | Top |
|
| Posted by
| Nick Gammon
Australia (23,173 posts) Bio
Forum Administrator |
| Date
| Reply #1 on Fri 10 Aug 2001 10:27 PM (UTC) Amended on Fri 10 Aug 2001 10:28 PM (UTC) by Nick Gammon
|
| Message
| VB doesn't let you assign a variable to a DIM on the same line you declare it. What would work is this:
sub AddDodgeS (strTriggerName, strLine, arrWildCards)
dim dodgeS
dodgeS = world.getvariable ("dodgesuccess")
dodgeS = dodgeS + 1
world.setvariable "dodgesuccess", dodgeS
end sub
However a shorter version (which does away with the DIM altogether) would be:
sub AddDodgeS (strTriggerName, strLine, arrWildCards)
world.setvariable "dodgesuccess", world.getvariable ("dodgesuccess") + 1
end sub
|
- 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.
13,590 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top