|
@@ -21,6 +21,9 @@ if $ARGS[0] = 'remove':
|
|
$npc_rel_type[$ARGS[1]] = 'ex-' + $npc_rel_type[$ARGS[1]]
|
|
$npc_rel_type[$ARGS[1]] = 'ex-' + $npc_rel_type[$ARGS[1]]
|
|
gs 'telefon', 'ClearCallSchedule', $ARGS[1]
|
|
gs 'telefon', 'ClearCallSchedule', $ARGS[1]
|
|
gs 'telefon', 'ClearSMSSchedule', $ARGS[1]
|
|
gs 'telefon', 'ClearSMSSchedule', $ARGS[1]
|
|
|
|
+ telefon_index = arrpos('$contact', $ARGS[1])
|
|
|
|
+ if telefon_index >= 0: contactAnon[telefon_index] = 1
|
|
|
|
+ killvar 'telefon_index'
|
|
end
|
|
end
|
|
|
|
|
|
|
|
|
|
@@ -51,6 +54,22 @@ elseif $ARGS[0] = 'add_sugar_daddy':
|
|
stat['sugardaddies_current'] += 1
|
|
stat['sugardaddies_current'] += 1
|
|
stat['total_lovers_current'] += 1
|
|
stat['total_lovers_current'] += 1
|
|
|
|
|
|
|
|
+elseif $ARGS[0] = 'add_husband':
|
|
|
|
+ gs 'lover', 'add', $ARGS[1]
|
|
|
|
+ $husID = $npcID
|
|
|
|
+ $npc_rel_type[$husID] = 'husband'
|
|
|
|
+ npc_rel[$husID] = 100
|
|
|
|
+ stat['husbands_current'] += 1
|
|
|
|
+ stat['total_lovers_current'] += 1
|
|
|
|
+
|
|
|
|
+elseif $ARGS[0] = 'add_wife':
|
|
|
|
+ gs 'lover', 'add', $ARGS[1]
|
|
|
|
+ $wifID = $npcID
|
|
|
|
+ $npc_rel_type[$wifID] = 'wife'
|
|
|
|
+ npc_rel[$wifID] = 100
|
|
|
|
+ stat['wifes_current'] += 1
|
|
|
|
+ stat['total_lovers_current'] += 1
|
|
|
|
+
|
|
end
|
|
end
|
|
|
|
|
|
|
|
|
|
@@ -78,6 +97,25 @@ elseif $ARGS[0] = 'remove_sugar_daddy':
|
|
stat['total_lovers_current'] -= 1
|
|
stat['total_lovers_current'] -= 1
|
|
stat['ex_sugardaddies'] += 1
|
|
stat['ex_sugardaddies'] += 1
|
|
|
|
|
|
|
|
+elseif $ARGS[0] = 'remove_husband':
|
|
|
|
+ gs 'lover', 'remove', $husID
|
|
|
|
+ npc_rel[$husID] = 0
|
|
|
|
+ $husID = ''
|
|
|
|
+ stat['husbands_current'] -= 1
|
|
|
|
+ stat['total_lovers_current'] -= 1
|
|
|
|
+ stat['ex_husbands'] += 1
|
|
|
|
+ killvar 'spouseVars'
|
|
|
|
+
|
|
|
|
+elseif $ARGS[0] = 'remove_wife':
|
|
|
|
+ gs 'lover', 'remove', $wifID
|
|
|
|
+ npc_rel[$wifID] = 0
|
|
|
|
+ npc_rel_type[$wifID] = 'ex-wife'
|
|
|
|
+ $wifID = ''
|
|
|
|
+ stat['wifes_current'] -= 1
|
|
|
|
+ stat['total_lovers_current'] -= 1
|
|
|
|
+ stat['ex_wifes'] += 1
|
|
|
|
+ killvar 'spouseVars'
|
|
|
|
+
|
|
end
|
|
end
|
|
|
|
|
|
! $ARGS[1+]: npc_rel_types that you want to include
|
|
! $ARGS[1+]: npc_rel_types that you want to include
|
|
@@ -123,7 +161,8 @@ if $ARGS[0] = 'clear_all':
|
|
elseif $npc_rel_type[$lover[temp_lover_index]] = 'sugar_daddy':
|
|
elseif $npc_rel_type[$lover[temp_lover_index]] = 'sugar_daddy':
|
|
gs 'lover', 'remove_sugar_daddy', $lover[temp_lover_index]
|
|
gs 'lover', 'remove_sugar_daddy', $lover[temp_lover_index]
|
|
elseif $npc_rel_type[$lover[temp_lover_index]] = 'husband':
|
|
elseif $npc_rel_type[$lover[temp_lover_index]] = 'husband':
|
|
- gs 'lover', 'remove_husband', $lover[temp_lover_index]
|
|
|
|
|
|
+ gs 'lover_love', 'divorce'
|
|
|
|
+ elseif $npc_rel_type[$lover[temp_lover_index]] = 'wife':
|
|
gs 'lover_love', 'divorce'
|
|
gs 'lover_love', 'divorce'
|
|
|
|
|
|
end
|
|
end
|