Advertisement
metformin1

Untitled

May 19th, 2022
1,037
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQF 0.44 KB | None | 0 0
  1. //Method 1
  2.  
  3. class Zeus
  4. {
  5.     position[] = {0,0.1,0};
  6.     vehicle = "B_soldier_TL_F";
  7.     name = "Zeus";
  8.     ControlMP = "true";
  9. };
  10.  
  11. //Method 2
  12.  
  13. class Zeus
  14. {
  15.     position[] = {0,0.1,0};
  16.     vehicle = "B_soldier_TL_F";
  17.     name = "Zeus";
  18.     isPlayable = 1;
  19. };
  20.  
  21. //Method 3
  22.  
  23. class Zeus
  24. {
  25.     position[] = {0,0.1,0};
  26.     vehicle = "B_soldier_TL_F";
  27.     expression = "_this set3DENAttribute ['ControlMP', true], _this set3DENAttribute ['name', 'Zeus'];";
  28. };
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement