Advertisement
Southclaw

Scavenge and Survive Loot Placement Guide

Mar 18th, 2013
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.96 KB | None | 0 0
  1. Categories:
  2. {
  3.     [loot_Civilian]
  4.         Common household loot
  5.         Place everywhere, places where civilians will be, outside shop doors, gardens, alleyways, street corners.
  6.  
  7.     [loot_Industrial]
  8.         Crafting items and other useful items
  9.         Place in industrial areas, behind shops in civilian areas, at doors to warehouses etc.
  10.  
  11.     [loot_Police]
  12.         Basic weapons and police supplies
  13.         Place only in/around police stations
  14.  
  15.     [loot_Military]
  16.         high grade weapons and explosives
  17.         Place only in/around military areas, not on streets or cop stations etc.
  18.  
  19.     [loot_Medical]
  20.         Medkits, Bandages, Drugs
  21.         Place only at hospitals, doctors, pharmacies etc, about 4-5 spawns at each, more if it's a large hospital.
  22.  
  23.     [loot_Survivor]
  24.         All the useful stuff from above categories
  25.         Place only in hard to reach places, rooftops, places where you would hide if you were in an apocalypse.
  26. }
  27.  
  28. How to place:
  29. {
  30.     Pick an area, place loot types based on object ID in that area, save to a file named after the area name.
  31.     All the areas without names go into ONE file named "gen" (means generic or general)
  32.     NOTE: Cities do NOT have a GEN area, only country areas do.
  33.  
  34.     I will convert it all and in the end all loot will be in the order: "Civ, Ind, Cop, Mil, Med, Sur"
  35.  
  36.     It will all be organized by district, that's why I want loot for separate areas in separate files.
  37. }
  38.  
  39. Example:
  40. {
  41.     LoadAreaLoot()
  42.     {
  43.         District_Docks();
  44.         District_Houses();
  45.         District_Downtown();
  46.     }
  47.  
  48.     District_Docks()
  49.     {
  50.         // Civilian Loot Code
  51.         // Industrial Loot Code
  52.         // Police Loot Code
  53.         // Military Loot Code
  54.         // Medical Loot Code
  55.         // Survivor Loot Code
  56.     }
  57.     District_Houses()
  58.     {
  59.         // Civilian Loot Code
  60.         // Industrial Loot Code
  61.         // Police Loot Code
  62.         // Military Loot Code
  63.         // Medical Loot Code
  64.         // Survivor Loot Code
  65.     }
  66.     District_Downtown()
  67.     {
  68.         // Civilian Loot Code
  69.         // Industrial Loot Code
  70.         // Police Loot Code
  71.         // Military Loot Code
  72.         // Medical Loot Code
  73.         // Survivor Loot Code
  74.     }
  75. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement