Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 3
0
 public static void SaveBoolean(hashtable table, integer parentKey, integer childKey, boolean value)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 6
0
 public static void SaveReal(hashtable table, integer parentKey, integer childKey, real value)
 {
     table.Add(parentKey.ToString("x8") + childKey.ToString("x8"), value);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }
Exemplo n.º 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);
 }