Advertisement
Guest User

FC3 Script Norway-_-1999

a guest
Mar 3rd, 2018
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. God Mode:
  2. EnableGodMode(1);
  3.  
  4.  
  5. Teleport:
  6. local player = GetLocalPlayerId();
  7. local coords = luavec.new(-859, 2328, 120);
  8. CAPI_Entity.TeleportEntityPos(player, coords ,0); --3 arg = loading screen (1 = on, 0 = off)
  9.  
  10.  
  11. Add Money:
  12. local player = GetLocalPlayerId();
  13. CAPI_Player.AddPlayerMoney(player, 100);
  14.  
  15.  
  16. Set Number Of Weapon Slots:
  17. local player = GetLocalPlayerId();
  18. CAPI_Player.SetNumberOfWeaponSlots(player,4);
  19.  
  20.  
  21. Set River Force:
  22. SetRiverWaterForceMultiplier(1000);
  23.  
  24.  
  25. Slow Motion:
  26. SetSlowMotion(0.2);
  27.  
  28.  
  29. Spawn Entity:
  30. local player = GetLocalPlayerId();
  31. local xPos = CAPI_Entity.GetEntityPosition(player, 0);
  32. local yPos = CAPI_Entity.GetEntityPosition(player, 1);
  33. local zPos = CAPI_Entity.GetEntityPosition(player, 2);
  34. local Name = "FC3_Graphics:Singleplayer:Exotic:BossFight:Broken _ Mask";
  35. local Prop = SpawnEntityFromArchetype(Name, xPos, yPos, zPos, 0,0,0);
  36.  
  37. Ps.
  38. To find objects to spawn, you can go into cheat engine and search for strings that starts with FC3_Graphics:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement