 |
rayzore Newbie
Joined: 27 Sep 2011 Posts: 3
|
Posted: Tue Sep 27, 2011 3:19 pm
Script help, will not compile |
Trigger pattern is timer4
#CASE %random {l} {check weapon} {inspect weapon} {score}
#if(%mud.gp = %mud.maxgp){
#ts %random(32,50)
#ALARM "Idle" +%random(2,9) {'say FULL GP}
}{
#ts %random(7,21)
}
triggers but doesn't compile, though for the life of me can't work out where the problem is (or how you find out what line the error is on). |
|
|
 |
Daern Sorcerer
Joined: 15 Apr 2011 Posts: 809
|
Posted: Tue Sep 27, 2011 3:33 pm |
Looks like you're just missing some spaces. Try this:
Code: |
#if (%mud.gp = %mud.maxgp) {
#ts %random(32,50)
#ALARM "Idle" +%random(2,9) {'say FULL GP}
} {
#ts %random(7,21)
} |
|
|
|
 |
rayzore Newbie
Joined: 27 Sep 2011 Posts: 3
|
Posted: Tue Sep 27, 2011 5:59 pm |
added spaces but still won't compile:/
|
|
|
 |
MattLofton GURU
Joined: 23 Dec 2000 Posts: 4834 Location: USA
|
Posted: Tue Sep 27, 2011 7:57 pm |
It tells you why it won't compile, though you may need to turn on the Advanced Tabs under the View menu. My guess is that cmud isn't liking %random in your #case without the () to go with it.
|
|
_________________ EDIT: I didn't like my old signature |
|
|
 |
rayzore Newbie
Joined: 27 Sep 2011 Posts: 3
|
Posted: Thu Sep 29, 2011 10:12 am |
After turning on advanced Tabs (thanks MattLofton) and fixing spacing (thaknks Daern) is was unhappy with #if (%mud.gp = %mud.maxgp) { --- turns out mxp was turned off for some reason. Thanks all:)
|
|
|
 |
|
|