Advertisement
D6Bell

fishing_config.hpp

Jun 14th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.04 KB | None | 0 0
  1. #define true 1
  2. #define false 0
  3.  
  4.  
  5. class fishing_config {
  6.    
  7.     version = 5; // 4.0 - 4.3 -> 4 | version 4.4+ -> 5
  8.  
  9.     vitemsclassname = "VirtualItems";    //Classname for you VirtualItems In the Vtiemsconfg or masterconfig
  10.  
  11.    
  12.     pickupitem = "You Unhook A ";//This is before the item name
  13.     pickupitem2 = ".";  //this is after the item name
  14.    
  15.     //Text When you reel in with something on the line
  16.     reelin = "The Line Feels heavy when you reel it in";
  17.  
  18.     //Text When you reel in without somthing on the line
  19.     reelinfail = "The Line Feels very light when you reel it in";  
  20.    
  21.     //Text when your fishing line breaks
  22.     brokenline = "The Line Broke recast";
  23.    
  24.     //Add the virtual items you wish to be able to catch. It will select a random item for the array so you can add as many items as you want
  25.     //50%
  26.     Fishing_common[] = {
  27.         "salema_raw",
  28.         "mackerel_raw",
  29.         "test_raw"
  30.     }; 
  31.     //35%
  32.     Fishing_uncommon[] = {
  33.          "ornate_raw"
  34.     };     
  35.     //10%
  36.     Fishing_rare[] = {
  37.          "cocaine_unprocessed"
  38.     }; 
  39.     //5%
  40.     Fishing_veryrare[] = {
  41.          "goldbar"
  42.     };   
  43.  
  44. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement