|
@@ -1,17 +1,16 @@
|
|
|
# drugs
|
|
|
|
|
|
-!! How to use:
|
|
|
-!! Smoking: gs 'drugs', 'smoke' (if it isn''t svetas cigarette, you have to add siga += 1)
|
|
|
-!! Joint/Weed: gs 'drugs', 'joint' (if it isn''t svetas joint, you have to add joint += 1)
|
|
|
-!! Heroin: gs 'drugs', 'heroin'
|
|
|
-!! Cocaine: gs 'drugs', 'cocaine' (if it isn''t svetas cocaine, you have to add dur += 1)
|
|
|
-!! Amphetamine: gs 'drugs', 'amphetamine' (if it isn''t svetas amphetamine, you have to add amphetamine += 1)
|
|
|
-
|
|
|
-!! Alcohol: gs 'drugs', 'alcohol', 'type', count
|
|
|
-!! Types: beer, champagne, moonshine, rum, scotch, vodka, wine, whiskey
|
|
|
-!! Count: Number of drinks of the chosen type sveta drinks (if the number is 1, you don''t have add the count, but it isn''t a problem if you do)
|
|
|
-!! Example 1: sveta drinks vodka gs 'drugs', 'alcohol', 'vodka' (or gs 'drugs', 'alcohol', 'vodka', 1)
|
|
|
-!! Example 2: sveta drinks 2 beer gs 'drugs', 'alcohol', 'beer', 2
|
|
|
+ How to use:
|
|
|
+ Smoking: gs 'drugs', 'smoke' (if it isn''t svetas cigarette, you have to add siga += 1)
|
|
|
+ Joint/Weed: gs 'drugs', 'joint' (if it isn''t svetas joint, you have to add joint += 1)
|
|
|
+ Heroin: gs 'drugs', 'heroin'
|
|
|
+ Cocaine: gs 'drugs', 'cocaine' (if it isn''t svetas cocaine, you have to add dur += 1)
|
|
|
+ Amphetamine: gs 'drugs', 'amphetamine' (if it isn''t svetas amphetamine, you have to add amphetamine += 1)
|
|
|
+ Alcohol: gs 'drugs', 'alcohol', 'type', count
|
|
|
+ Types: beer, champagne, moonshine, rum, scotch, vodka, wine, whiskey
|
|
|
+ Count: Number of drinks of the chosen type sveta drinks (if the number is 1, you don''t have add the count, but it isn''t a problem if you do)
|
|
|
+ Example 1: sveta drinks vodka gs 'drugs', 'alcohol', 'vodka' (or gs 'drugs', 'alcohol', 'vodka', 1)
|
|
|
+ Example 2: sveta drinks 2 beer gs 'drugs', 'alcohol', 'beer', 2
|
|
|
|
|
|
if $ARGS[0] = 'smoke':
|
|
|
if NarkImmune = 0: smoker += 1
|
|
@@ -129,12 +128,12 @@ elseif $ARGS[0] = 'alcohol':
|
|
|
pcs_hydra -= 10
|
|
|
end
|
|
|
else
|
|
|
- '<br><font color = red>Developer note: The type of alcohol is missing in this scene. Please report this and the following variable: $curloc = <<$curloc>> as a bug.</font>'
|
|
|
+ '<br><font color = red>Developer note: The type of alcohol is missing in this scene. Please report this and a small part of the text of the current scene as a bug.</font>'
|
|
|
end
|
|
|
if alc_count > 0: jump 'alcohol_jump'
|
|
|
killvar 'alc_count'
|
|
|
else
|
|
|
- '<br><font color = red>Developer note: The type of drug is wrong or missing in this scene. Please report this and the following variable: $curloc = <<$curloc>> as a bug.</font>'
|
|
|
+ '<br><font color = red>Developer note: The type of drug is wrong or missing in this scene. Please report this and a small part of the text of the current scene as a bug.</font>'
|
|
|
end
|
|
|
|
|
|
--- drugs ---------------------------------
|