Advertisement
Guest User

cTree.inc by KarolisK

a guest
Dec 22nd, 2013
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.64 KB | None | 0 0
  1. /*
  2.  
  3.  
  4.     cTree - v0.1
  5.     by KarolisK
  6.    
  7. */
  8.  
  9. stock createTree( Float:x, Float:y, Float:z )
  10. {
  11.     CreateObject(19076, x, y, z-1.0,0.0,0.0,300);
  12.     CreateObject(19054, x, y+1.0, z-0.4,0,0,0.0,300);
  13.     CreateObject(19058, x+1.0, y, z-0.4,0,0,0.0,300);
  14.     CreateObject(19056, x, y-1.0, z-0.4,0,0,0.0,300);
  15.     CreateObject(19057, x-1.0, y, z-0.4,0,0,0.0,300);
  16.     CreateObject(19058, x-1.5, y+1.5, z-1.0,0,0,0.0,300);
  17.     CreateObject(19055, x+1.5, y-1.5, z-1.0,0,0,0.0,300);
  18.     CreateObject(19057, x+1.5, y+1.5, z-1.0,0,0,0.0,300);
  19.     CreateObject(19054, x-1.5, y-1.5, z-1.0,0,0,0.0,300);
  20.     CreateObject(3526, x, y, z-1.0,0,0,300);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement