Example #1
0
 public static boolean SaveDestructableHandle(hashtable table, integer parentKey, integer childKey, destructable whichDestructable)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichDestructable);
     return(true);
 }
Example #2
0
 public static boolean SaveItemHandle(hashtable table, integer parentKey, integer childKey, item whichItem)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichItem);
     return(true);
 }
Example #3
0
 public static void SaveBoolean(hashtable table, integer parentKey, integer childKey, boolean value)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value);
 }
Example #4
0
 public static boolean SaveStr(hashtable table, integer parentKey, integer childKey, @string value)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value);
     return(true);
 }
Example #5
0
 public static boolean SaveGroupHandle(hashtable table, integer parentKey, integer childKey, group whichGroup)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichGroup);
     return(true);
 }
Example #6
0
 public static void SaveReal(hashtable table, integer parentKey, integer childKey, real value)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value);
 }
Example #7
0
 public static boolean SaveLightningHandle(hashtable table, integer parentKey, integer childKey, lightning whichLightning)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichLightning);
     return(true);
 }
Example #8
0
 public static boolean SaveTimerHandle(hashtable table, integer parentKey, integer childKey, timer whichTimer)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichTimer);
     return(true);
 }
Example #9
0
 public static boolean SaveDialogHandle(hashtable table, integer parentKey, integer childKey, dialog whichDialog)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichDialog);
     return(true);
 }
Example #10
0
 public static boolean SaveTextTagHandle(hashtable table, integer parentKey, integer childKey, texttag whichTexttag)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichTexttag);
     return(true);
 }
Example #11
0
 public static boolean SaveMultiboardHandle(hashtable table, integer parentKey, integer childKey, multiboard whichMultiboard)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichMultiboard);
     return(true);
 }
Example #12
0
 public static boolean SaveSoundHandle(hashtable table, integer parentKey, integer childKey, sound whichSound)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichSound);
     return(true);
 }
Example #13
0
 public static boolean SaveBooleanExprHandle(hashtable table, integer parentKey, integer childKey, boolexpr whichBoolexpr)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichBoolexpr);
     return(true);
 }
Example #14
0
 public static boolean SaveUnitHandle(hashtable table, integer parentKey, integer childKey, unit whichUnit)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichUnit);
     return(true);
 }
Example #15
0
 public static boolean SaveRegionHandle(hashtable table, integer parentKey, integer childKey, region whichRegion)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichRegion);
     return(true);
 }
Example #16
0
 public static boolean SaveAbilityHandle(hashtable table, integer parentKey, integer childKey, ability whichAbility)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichAbility);
     return(true);
 }
Example #17
0
 public static boolean SaveFogStateHandle(hashtable table, integer parentKey, integer childKey, fogstate whichFogState)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichFogState);
     return(true);
 }
Example #18
0
 public static boolean SaveTriggerConditionHandle(hashtable table, integer parentKey, integer childKey, triggercondition whichTriggercondition)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichTriggercondition);
     return(true);
 }
Example #19
0
 public static boolean SaveTriggerEventHandle(hashtable table, integer parentKey, integer childKey, @event whichEvent)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), whichEvent);
     return(true);
 }