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