Search found 276 matches

by celestian
Thu Mar 17, 2016 4:52 pm
Forum: User Creations
Topic: AD&D (1e or 2e) Framework
Replies: 66
Views: 42777

Re: AD&D (1e or 2e) Framework

Version 2.6 updates. https://github.com/CelestianGC/ADnD-2e-Framework/blob/master/ADnD%20Framework%202.6.cmpgn?raw=true added "Campaign Settings" option for Spell DB (1e/2e) added "Campaign Settings" option for Monster DB (1e/2e) added str/dex/int/wis/chr/con tables. Players can ...
by celestian
Wed Mar 16, 2016 9:32 pm
Forum: MapTool
Topic: json.append not working like I thought?
Replies: 2
Views: 514

Re: json.append not working like I thought?

what you want is an json array of json objects (i think) now you are trying to create a jsonobjectarray (which does not exist) So you structure would look like: [{tokenid:..., etc}, {tokenid:etc}, etc] this means that your states json needs to be an array e.g.: [1,2,3,4] and not an object eg: {a:1,...
by celestian
Tue Mar 15, 2016 8:47 pm
Forum: MapTool
Topic: json.append not working like I thought?
Replies: 2
Views: 514

json.append not working like I thought?

I'm trying to append to a json but can't seem to come up with a good way to do it. What I'd like to have is a list of token IDs (sometimes the same ones) with details on state/duration/etc. That way each round I can flip through the list and tic down the time on the state duration and eventually rem...
by celestian
Sat Mar 12, 2016 3:36 pm
Forum: MapTool
Topic: Having issues saving...
Replies: 4
Views: 597

Re: Having issues saving...

When I try and save a campaign (or even a token) I'll get an error that Access was denied and/or the file is missing. Sure nuff if you look in the directory it's gone. If I save as it creates it, save it once... but if I try to immediately "Save" it again I get the same error and it's gon...
by celestian
Fri Mar 11, 2016 4:32 pm
Forum: MapTool
Topic: Having issues saving...
Replies: 4
Views: 597

Re: Having issues saving...

I thought a reboot fixed it but it didn't. meh, still trying to figure out what's up. Here is what I see when I save the campaign. http://www.evernote.com/l/ASB7SrnPSzNBEozGNRyjK3qhhu_4N4Lp0xw/ File is indeed gone. If I save again right after that is works. It's like it's having directory permission...
by celestian
Fri Mar 11, 2016 4:12 pm
Forum: MapTool
Topic: Having issues saving...
Replies: 4
Views: 597

Having issues saving...

I'm pretty sure this has nothing to do with maptools (running 1.4.0) because this worked perfectly up until this week. When I try and save a campaign (or even a token) I'll get an error that Access was denied and/or the file is missing. Sure nuff if you look in the directory it's gone. If I save as ...
by celestian
Sun Feb 07, 2016 2:03 pm
Forum: MapTool
Topic: copyToken issue, X, Y cords not seeming to work?
Replies: 2
Views: 413

Re: copyToken issue, X, Y cords not seeming to work?

I'm guessing you mixed up grid coords and pixel coords. If you divide the two x coords and check the outcome with your map settings, you can know for sure You were correct. I had thought the copyToken() would use the default method (1). I tweaked the code for the updates to this and it worked: [h: ...
by celestian
Sat Feb 06, 2016 9:16 pm
Forum: MapTool
Topic: copyToken issue, X, Y cords not seeming to work?
Replies: 2
Views: 413

copyToken issue, X, Y cords not seeming to work?

I have a set of tokens that store spells and another that stores monsters. I'd like to be able to let the user flip a setting and it "copy" the DB they want to use (1e or 2e). To that end I've created a function that should do just what I want but it seems to NOT place the token where the ...
by celestian
Sun Jan 17, 2016 1:36 am
Forum: User Creations
Topic: AD&D (1e or 2e) Framework
Replies: 66
Views: 42777

Re: AD&D (1e or 2e) Framework

Current download link: ADnD Framework 2.0.cmpgn 1.6-2.0 changes Change log link. * Added "sample" map. @CelestianGC equipment/combat … CelestianGC committed 29 days ago * updated combat/attacks window for npcs to match pc style * updated equipment sheet for PCs and put total on bottom. a5a...
by celestian
Fri Dec 04, 2015 11:46 pm
Forum: MapTool
Topic: Date/Time function feature?
Replies: 2
Views: 566

Re: Date/Time function feature?

aliasmask wrote:Wiki: getInfo() returns a json where you can get date/time info. The timeInMs is based on UTC 0, but the time/date stamp is based on the client.
That'll work, thanks!

I kept searching for "time" "date" and similar on the wiki but never hit that ;(
by celestian
Fri Dec 04, 2015 9:32 pm
Forum: MapTool
Topic: [1.4+ question]
Replies: 8
Views: 1044

Re: [1.4+ question]

Second, keep your VBL lines simple. "Good enough" is sorta the key to keeping MapTool running smooth. And as much as it kills a perfectionist like me, sometimes it's better to sacrifice VBL lines that perfectly go over every surface in order to keep the experience smooth. One of my bigges...
by celestian
Fri Dec 04, 2015 9:26 pm
Forum: MapTool
Topic: Date/Time function feature?
Replies: 2
Views: 566

Date/Time function feature?

I've been trying to find something related to time/date functions because I want to "stamp" a log entry on a token but can't seem to find one.

Is there a way to get current date/time via macro?
by celestian
Thu Sep 17, 2015 12:15 am
Forum: User Creations
Topic: AD&D (1e or 2e) Framework
Replies: 66
Views: 42777

Re: AD&D (1e or 2e) Framework

1.5-1.6 update Changelog. * Added search to monster db. * Various import bugs corrected. * Container capacity limits. * Added weight tracking and movebase adjustments for encumbrance. * Run through test with 1.4, no problems. * Bug fixes in learning/memorizing spells. * NPC Death, token is moved &qu...
by celestian
Tue Sep 15, 2015 1:34 pm
Forum: Feature Requests
Topic: Frames and Tabs and selection/removal.
Replies: 2
Views: 911

Re: Frames and Tabs and selection/removal.

If your goal is to close a tabbed frame you don't need to check to see if it is visible. Frames are not "visible" if not currently selected in the tab group. resetFrame will remove a frame from a tabbed group, so you don't want to use that. You need to redraw the frame to bring to front. ...
by celestian
Tue Sep 15, 2015 11:42 am
Forum: Feature Requests
Topic: Frames and Tabs and selection/removal.
Replies: 2
Views: 911

Frames and Tabs and selection/removal.

I have 2 issues related to frames and those frames in a tab. I have a "Sheet" for each NPC. That sheet is a small statblock with "links" to attack, adjust health/etc. These are used by the DM. I like to have the entire "encounter" sheets up and in a single tab "win...

Go to advanced search