Search the web
Sign In
New User? Sign Up
cw · Metacreator/Creation Workshop Group
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6908 - 6937 of 8354   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6908
The totals for Mental Defense, Flash Defense, and Power Defense do not display on the Hero5th.prt sheet. I am using the 2.02 Template. Has this been fixed in...
Kevin
kevlord007
Offline Send Email
Jun 2, 2006
1:16 am
6909
I believe this has been fixed in teh 2.03 Template which is in the files section. The 3.0 Beta uses a different display code for the Print Template and should...
schir1964
Offline Send Email
Jun 2, 2006
6:04 am
6910
I just tried to write some scripts, so, I made the file SoZsubs.inc, copied the first three lines of CommonSubs.inc from Ars Magicka 5 (and changed the game's...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 3, 2006
9:57 pm
6911
Not to mention, how do I clear the variables from a script if I run into an error during execution? I put the script I'm working on into a button on the...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 3, 2006
10:09 pm
6912
I'm trying to set up an ?implicitdups;?uchoose statement to add items. However, it doesn't increment items that already exist like it should. Are there any...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 4, 2006
3:24 am
6913
Since this is a data sheet, what you have included is completely incorrect. It looks like nonsense to the data sheet code, so the most informative message it...
Bruce Kvam
brucekvam
Offline Send Email
Jun 4, 2006
2:16 pm
6914
Variables in the context of the script are reinitialized to zero (or their initial value) each time the script runs. Actually, they aren't reinitialized, they...
Bruce Kvam
brucekvam
Offline Send Email
Jun 4, 2006
2:23 pm
6915
... Just make sure that you have the target list and source list correctly identified. The 3.5 template uses this extensively. ... Are you doing the same...
Bruce Kvam
brucekvam
Offline Send Email
Jun 4, 2006
2:28 pm
6916
Okay, I hadn't realized where CommonSubs.inc was called from - I figured an .inc file would be called from the .mds, but I hadn't checked. It's called from...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 4, 2006
7:11 pm
6917
I do have ?list and ?cat statements in both cases. The major difference I can think of is that in the case that works, a single item (in a dialog list box)...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 4, 2006
7:21 pm
6918
The button's script starts: Var n,m; Var abilList[0]; n = removeAllElements(abilList); The error is: "Unable to define n (Variable redefined n) Mathias Gehl ...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 4, 2006
7:29 pm
6919
How do I write a selection expression to limit the next item chosen to level/cost (they're identical for these items) between 1 and 4? X<=4, l<=4, c<=4,...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 4, 2006
11:37 pm
6920
Sorry, I misunderstood the context of your question. When you put a script on a button in this fashion, it is executed in the context of the load script. It is...
Bruce Kvam
brucekvam
Offline Send Email
Jun 5, 2006
2:55 pm
6921
Could you give me a concrete example of what items can be selected from? I don't understand what the choices are and what you're trying to weed out....
Bruce Kvam
brucekvam
Offline Send Email
Jun 5, 2006
3:03 pm
6922
Here's the code I've got so far: ?list:Valdreyr ?cat:Valdreyr ?selexp:x>=1 and x<=4 ?choose:Select a Valdreyr of up to 4 CCP,1,*Valdreyr Valdreyr (a made up...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 5, 2006
3:51 pm
6923
With a selexp similar to the one below I was able select items in the fashion you wish to. iteminfo('@c@')>=1 and iteminfo('@c@')<=4 It looks like you should...
Bruce Kvam
brucekvam
Offline Send Email
Jun 5, 2006
8:22 pm
6924
Okay, it got even screwier when I started testing, but I finally tracked it down: The items that can't increment properly - they add items to a second list (I ...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
3:05 am
6925
Thanks, '@c@' works, but not '@v@' Also, a note for anyone who may find this email thread in a search: *Valdreyr=4 as the items allowed in the ?uchoose...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
3:12 am
6926
A quick question about using ?implicitdups;?uchoose to increment items - there isn't anything I can do to make the items undo the incrementing if they're...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
3:22 am
6927
I'm working with a matchlist/matchbox dialog, and since the items that start out in the matchbox are simply placeholders, I'd like for them to either go away,...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
4:37 am
6928
Here's the code I'm having trouble with: item (Skills, skill1) set level=@level+1; option Practice = @Practice+1; enditem item (Skills, skill2) set...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
5:21 am
6929
After running this: item (Skills, skill1) set level=@level+1; option Practice = @Practice+1; enditem the Practice option is now the distributed level...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
6:13 am
6930
Oh, and I remember now why this is so. Like the cost, the level is not actually calculated until an item is instantiated. Instead the initial value is in a...
Bruce Kvam
brucekvam
Offline Send Email
Jun 6, 2006
3:58 pm
6931
No, there is no way to automatically undo your increments. However, another approach can be used if what your item is actually providing is a bonus to another...
Bruce Kvam
brucekvam
Offline Send Email
Jun 6, 2006
4:06 pm
6932
I don't understand. If you don't want those items in those list boxes why are you putting them there in the first place? The TerraIncognita.cst character...
Bruce Kvam
brucekvam
Offline Send Email
Jun 6, 2006
4:13 pm
6933
To isolate the problem I suggest getting the values of the option into a variable and using the debugger to figure out what's happening at each step....
Bruce Kvam
brucekvam
Offline Send Email
Jun 6, 2006
4:16 pm
6934
Now your other problem makes some sense. You hadn't mentioned that Practice was a distributed level adjustment. When you increase the level, the application...
Bruce Kvam
brucekvam
Offline Send Email
Jun 6, 2006
4:25 pm
6935
The problem is that this code isn't on the item itself - this is being added from a different item. During character creation, skills are created and ...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
4:45 pm
6936
I ended up going with multiple listboxes instead, but can a matchbox be created with an array like: Var array[3]; And then don't put anything into the array? ...
Mathias Gehl
mathiasgehl
Offline Send Email
Jun 6, 2006
4:47 pm
6937
If all you want to do is have the user select three items in a list, then you don't want matchlist. Use a listbox preceded by the following statement: ...
Bruce Kvam
brucekvam
Offline Send Email
Jun 6, 2006
8:24 pm
Messages 6908 - 6937 of 8354   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help