D&D 3.5 Framework

Discussion of and general support for d20 D&D, including 3.0E and 3.5E and derivatives.

Moderators: dorpond, Azhrei

Post Reply
noldona
Kobold
Posts: 1
Joined: Thu Apr 05, 2012 7:16 pm

D&D 3.5 Framework

Post by noldona »

OK, so I have started working on creating a framework for CT for D&D 3.5e. I got a character sheet pretty much done and have gotten to the mapping out the properties. From the little I can gather from the Adopters threads and looking at what was done in the other systems, to load data into a combobox, you need to link the combobox to a property of type slot. And that slot property has an attribute of type data that links to the .rpdat file in the database folder. So I have a combobox called race.race, have the below propertyDescriptorSet.xml and race.rpdat files in the appropriate locations. I have yet to implement all of the properties into the propertyDescriptorSet file. And when I load the form into CT, the form loads, the combobox is blank, and I receive the below error. Do I need to implement all of the properties before stuff will load? Am I doing something else wrong?
propertyDescriptorSet.xml

Code: Select all

<property-set>
 	<type>35eCombatant</type>
 	<name>D & D 3.5e</name>
  	<description>This is the descriptor set for D & D 3.5 Edition combatants.</description>
  	<game>D & D 3.5e</game>
  	<source>SRD</source>
  	<database-name>dnd35e</database-name>
  	<property-sets>
  	</property-sets>
  	<properties>
  		<property name="characterName" group="Description" visibility="IN_IT_TABLE"><description>Name of the creature.</description></property>
  		<property name="playerName" group="Description"><description>Name of the player</description></property>
  		<property name="xp" group="Level"><description>Experience Points</description></property>
  		<property name="class" group="Description" visibility="IN_IT_TABLE"><description>Compile list of the classes and levels</description></property>
  		<property name="ecl" group="Description" visibility="IN_IT_TABLE"><description>Effective Class Level</description></property>
  		<property name="race" group="Description" type="MAP" visibility="IN_IT_TABLE">
  			<description></description>
  			<properties>
  				<property name="race" type="SLOT" data="race" group="Description" visibility="IN_IT_TABLE">
  					<description>Race of the creature</description>
  				</property>
  			</properties>
  		</property>
  		<property name="size" group="Description"></property>
 	</properties>
</property-set>
race.rpdat

Code: Select all

<rptools-data>
  	<property-set>
    	<type>race</type>
    	<name>Races</name>
    	<description>Character Races</description>
    	<game>D & D 3.5e</game>
    	<source>PHB</source>
    	<properties>
      		<property name="name"><description>Unique name for the race.</description></property>
      		<property name="strBonus"><description>The Strength bonus for this race.</description></property>
      		<property name="dexBonus"><description>The Strength bonus for this race.</description></property>
      		<property name="conBonus"><description>The Strength bonus for this race.</description></property>
      		<property name="intBonus"><description>The Strength bonus for this race.</description></property>
      		<property name="wisBonus"><description>The Strength bonus for this race.</description></property>
      		<property name="charBonus"><description>The Strength bonus for this race.</description></property>
      		<property name="size"><description>The size of this race.</description></property>
      		<property name="speed" type="NUMBER"><description>The number of squares of movement for this race.</description></property>
      		<property name="vision"><description>The type of vision for this race.</description></property>
      		<property name="languages"><description>The base languages for this race.</description></property>
      		<property name="skillBonuses"><description>The skill bonuses for this race.</description></property>
      		<property name="features"><description>The special features for this race.</description></property>
      		<property name="modifierSetName"><description>Name of modifier set that provides racial bonuses.</description></property>
    	</properties>
  	</property-set>
	<race>
    	<name>Human</name>
    	<strBonus>0</strBonus>
    	<dexBonus>0</dexBonus>
    	<conBonus>0</conBonus>
    	<intBonus>0</intBonus>
    	<wisBonus>0</wisBonus>
    	<chaBonus>0</chaBonus>
    	<size>Medium</size>
    	<speed>6</speed>
    	<vision>Normal</vision>
    	<languages>Common</languages>
  	</race>
</rptools-data>
Error

Code: Select all

WARNING: Error executing the script: 

    var Java = new JavaImporter(java.lang, net.rptools.chartool.model.property);
    with (Java) {
      var loaded = character.getCustomProperty("scripting.loaded");
      if (loaded == null || !loaded.equals("true")) {
        var identifier = new Long(System.currentTimeMillis()).toString();
        Utils.loadModifiers(character.getCustomProperties(), "synergy", identifier, null);
        character.setCustomProperty("scripting.loaded", "true");
        character.setCustomProperty("scripting.defaultModifierIdentifier", identifier);
      } // endif 
    } // endwith
javax.script.ScriptException: sun.org.mozilla.javascript.internal.WrappedException: Wrapped java.lang.IllegalArgumentException: Invalid path 'scripting.loaded' at 'scripting': No value (<Unknown Source>#4)
	at com.sun.script.javascript.RhinoCompiledScript.eval(RhinoCompiledScript.java:41)
	at net.rptools.chartool.model.property.CompiledScript.execute(CompiledScript.java:100)
	at net.rptools.chartool.ui.CharacterTab.callLoadCharacterScript(CharacterTab.java:265)
	at net.rptools.chartool.ui.CharacterTab.setCharacter(CharacterTab.java:238)
	at net.rptools.chartool.ui.CharacterTab.newCharacter(CharacterTab.java:275)
	at net.rptools.chartool.ui.CharToolFrame.newTab(CharToolFrame.java:374)
	at net.rptools.chartool.ui.CharToolFrame$2.run(CharToolFrame.java:202)
	at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
	at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:641)
	at java.awt.EventQueue.access$000(EventQueue.java:84)
	at java.awt.EventQueue$1.run(EventQueue.java:602)
	at java.awt.EventQueue$1.run(EventQueue.java:600)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
	at java.awt.EventQueue.dispatchEvent(EventQueue.java:611)
	at net.rptools.chartool.ui.LoggingEventQueue.dispatchEvent(LoggingEventQueue.java:74)
	at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
	at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
	at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
Caused by: sun.org.mozilla.javascript.internal.WrappedException: Wrapped java.lang.IllegalArgumentException: Invalid path 'scripting.loaded' at 'scripting': No value (<Unknown Source>#4)
	at sun.org.mozilla.javascript.internal.Context.throwAsScriptRuntimeEx(Context.java:1699)
	at sun.org.mozilla.javascript.internal.MemberBox.invoke(MemberBox.java:147)
	at sun.org.mozilla.javascript.internal.NativeJavaMethod.call(NativeJavaMethod.java:190)
	at sun.org.mozilla.javascript.internal.Interpreter.interpretLoop(Interpreter.java:3073)
	at sun.org.mozilla.javascript.internal.Interpreter.interpret(Interpreter.java:2239)
	at sun.org.mozilla.javascript.internal.InterpretedFunction.call(InterpretedFunction.java:138)
	at sun.org.mozilla.javascript.internal.ContextFactory.doTopCall(ContextFactory.java:323)
	at sun.org.mozilla.javascript.internal.ScriptRuntime.doTopCall(ScriptRuntime.java:2747)
	at sun.org.mozilla.javascript.internal.InterpretedFunction.exec(InterpretedFunction.java:149)
	at com.sun.script.javascript.RhinoCompiledScript.eval(RhinoCompiledScript.java:37)
	... 21 more
Caused by: java.lang.IllegalArgumentException: Invalid path 'scripting.loaded' at 'scripting': No value
	at net.rptools.chartool.model.property.PropertyNode.resolvePath(PropertyNode.java:383)
	at net.rptools.chartool.model.property.PropertyNode.get(PropertyNode.java:636)
	at net.rptools.chartool.model.property.PropertyNode.get(PropertyNode.java:601)
	at net.rptools.chartool.model.Character.getCustomProperty(Character.java:112)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:37)
	at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:244)
	at sun.org.mozilla.javascript.internal.MemberBox.invoke(MemberBox.java:132)
	... 29 more
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'gender'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'race.name'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'alignment'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'religion'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'height'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weight'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'age'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'looks'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'str.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'dex.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'con.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'int.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'wis.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'cha.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'str.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'dec.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'con.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'int.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'wis.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'cha.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'str.racial'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'dex.racial'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'con.racial'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'int.racial'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'wis.racial'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'cha.racial'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'str.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'dex.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'con.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'int.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'wis.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'cha.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'str.mod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'dex.mod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'con.mod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'int.mod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'wis.mod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'cha.mod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'str.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'dec.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'con.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'int.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'wis.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'cha.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.name'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.range'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.type'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.attackBonus'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.notes'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.damage'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon1.critical'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'baseAttackBonus'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.name'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.range'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.attackBonus'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.type'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.damage'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.critical'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon2.notes'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.name'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.range'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.attackBonus'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.damage'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.critical'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.type'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'weapon3.notes'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'grapple.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'grapple.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'grapple.ability'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'grapple.size'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'grapple.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'hp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'initMod'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'speed'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'fort.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'reflex.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'will.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'fort.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'reflex.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'will.base'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'fort.ability'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'reflex.ability'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'will.ability'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'fort.magic'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'reflex.magic'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'will.magic'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'fort.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'reflex.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'will.misc'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'fort.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'reflex.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'will.temp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'conditionalModifiers'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.armor'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.shield'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.ability'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.size'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.natural'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.deflection'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.touch'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'ac.flatFooted'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'armor.name'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'shield.name'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'armor.maxDex'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'shield.maxDex'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'armor.checkPenalty'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'shield.checkPenalty'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'armor.weight'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'shield.weight'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'skills'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'traits'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'trait.view'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'trait.add'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'trait.remove'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'feats'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'languages'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'feats.view'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'languages.view'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'feats.add'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'languages.add'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'languages.remove'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'feats.remove'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'onPerson'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'Tree.cellRenderer'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'notOnPerson'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'Tree.cellRenderer'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.head'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.hands'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.eyes'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.neck'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.shoulders'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.ring1'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.ring2'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.feet'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.waist'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.torso'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.body'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'magicItem.arms'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'money.pp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'money.gp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'money.sp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'money.cp'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'carry.light'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'carry.medium'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'carry.heavy'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.ui.charsheet.CharSheetController construct
WARNING: There is no property data type defined for the component named 'carry.total'. This component is ignored.
Apr 4, 2012 10:30:59 PM net.rptools.chartool.model.property.CompiledScript execute
WARNING: Error executing the script: 

    var Java = new JavaImporter(java.lang, net.rptools.chartool.model.property);
    with (Java) {
      var loaded = character.getCustomProperty("scripting.loaded");
      if (loaded == null || !loaded.equals("true")) {
        var identifier = new Long(System.currentTimeMillis()).toString();
        Utils.loadModifiers(character.getCustomProperties(), "synergy", identifier, null);
        character.setCustomProperty("scripting.loaded", "true");
        character.setCustomProperty("scripting.defaultModifierIdentifier", identifier);
      } // endif 
    } // endwith
javax.script.ScriptException: sun.org.mozilla.javascript.internal.WrappedException: Wrapped java.lang.IllegalArgumentException: Invalid path 'scripting.loaded' at 'scripting': No value (<Unknown Source>#4)
	at com.sun.script.javascript.RhinoCompiledScript.eval(RhinoCompiledScript.java:41)
	at net.rptools.chartool.model.property.CompiledScript.execute(CompiledScript.java:100)
	at net.rptools.chartool.ui.CharacterTab.callLoadCharacterScript(CharacterTab.java:265)
	at net.rptools.chartool.ui.CharacterTab.setCharacter(CharacterTab.java:238)
	at net.rptools.chartool.ui.CharacterTab.displayViewPane(CharacterTab.java:187)
	at net.rptools.chartool.ui.CharacterTab.setCharacterSheet(CharacterTab.java:327)
	at net.rptools.chartool.ui.CharToolFrame.stateChanged(CharToolFrame.java:523)
	at javax.swing.DefaultSingleSelectionModel.fireStateChanged(DefaultSingleSelectionModel.java:116)
	at javax.swing.DefaultSingleSelectionModel.setSelectedIndex(DefaultSingleSelectionModel.java:50)
	at javax.swing.JTabbedPane.setSelectedIndexImpl(JTabbedPane.java:599)
	at javax.swing.JTabbedPane.setSelectedIndex(JTabbedPane.java:574)
	at javax.swing.JTabbedPane.insertTab(JTabbedPane.java:710)
	at javax.swing.JTabbedPane.addTab(JTabbedPane.java:777)
	at net.rptools.chartool.ui.CharacterTab.createTab(CharacterTab.java:165)
	at net.rptools.chartool.ui.CharToolFrame.newTab(CharToolFrame.java:375)
	at net.rptools.chartool.ui.CharToolFrame$2.run(CharToolFrame.java:202)
	at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
	at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:641)
	at java.awt.EventQueue.access$000(EventQueue.java:84)
	at java.awt.EventQueue$1.run(EventQueue.java:602)
	at java.awt.EventQueue$1.run(EventQueue.java:600)
	at java.security.AccessController.doPrivileged(Native Method)
	at java.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
	at java.awt.EventQueue.dispatchEvent(EventQueue.java:611)
	at net.rptools.chartool.ui.LoggingEventQueue.dispatchEvent(LoggingEventQueue.java:74)
	at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
	at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
	at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
	at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
	at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
Caused by: sun.org.mozilla.javascript.internal.WrappedException: Wrapped java.lang.IllegalArgumentException: Invalid path 'scripting.loaded' at 'scripting': No value (<Unknown Source>#4)
	at sun.org.mozilla.javascript.internal.Context.throwAsScriptRuntimeEx(Context.java:1699)
	at sun.org.mozilla.javascript.internal.MemberBox.invoke(MemberBox.java:147)
	at sun.org.mozilla.javascript.internal.NativeJavaMethod.call(NativeJavaMethod.java:190)
	at sun.org.mozilla.javascript.internal.Interpreter.interpretLoop(Interpreter.java:3073)
	at sun.org.mozilla.javascript.internal.Interpreter.interpret(Interpreter.java:2239)
	at sun.org.mozilla.javascript.internal.InterpretedFunction.call(InterpretedFunction.java:138)
	at sun.org.mozilla.javascript.internal.ContextFactory.doTopCall(ContextFactory.java:323)
	at sun.org.mozilla.javascript.internal.ScriptRuntime.doTopCall(ScriptRuntime.java:2747)
	at sun.org.mozilla.javascript.internal.InterpretedFunction.exec(InterpretedFunction.java:149)
	at com.sun.script.javascript.RhinoCompiledScript.eval(RhinoCompiledScript.java:37)
	... 30 more
Caused by: java.lang.IllegalArgumentException: Invalid path 'scripting.loaded' at 'scripting': No value
	at net.rptools.chartool.model.property.PropertyNode.resolvePath(PropertyNode.java:383)
	at net.rptools.chartool.model.property.PropertyNode.get(PropertyNode.java:636)
	at net.rptools.chartool.model.property.PropertyNode.get(PropertyNode.java:601)
	at net.rptools.chartool.model.Character.getCustomProperty(Character.java:112)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at sun.reflect.misc.Trampoline.invoke(MethodUtil.java:37)
	at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:597)
	at sun.reflect.misc.MethodUtil.invoke(MethodUtil.java:244)
	at sun.org.mozilla.javascript.internal.MemberBox.invoke(MemberBox.java:132)
	... 38 more

User avatar
jay
RPTools Team
Posts: 1767
Joined: Tue Feb 07, 2006 1:07 am
Location: Austin, Tx

Re: D&D 3.5 Framework

Post by jay »

Just looking at the error, you are missing a 'scripting' map property in your base definition.

The dnd4e does a lot of the combo box stuff you are trying to do, but I'm not at my computer at home to give you a good example.

billcoke
Kobold
Posts: 13
Joined: Mon Nov 21, 2011 7:24 pm

Re: D&D 3.5 Framework

Post by billcoke »

Has this framework come along any further? Is this something that I could download and use?

User avatar
jay
RPTools Team
Posts: 1767
Joined: Tue Feb 07, 2006 1:07 am
Location: Austin, Tx

Re: D&D 3.5 Framework

Post by jay »

It has not come any further to my knowledge.

Post Reply

Return to “Support: d20 D&D”