RanggaBS

100% Respect

Jun 6th, 2021 (edited)
713
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.84 KB | None | 0 0
  1. function main()
  2.     while not SystemIsReady() or AreaIsLoading() do
  3.         Wait(0)
  4.     end
  5.     while true do
  6.         Wait(0)
  7.         -- Set the attitude:
  8.         local A = {1,2,3,4,5,6,9,10,11}
  9.         for B, C in ipairs(A) do
  10.             PedSetDefaultTypeToTypeAttitude(C,13,4)
  11.         end
  12.         -- Set the respect number in menu:
  13.         local D = {11,1,2,5,4,3}
  14.         for E, F in ipairs(D) do
  15.             SetFactionRespect(F,100)
  16.         end
  17.         -- Every woman as slut:
  18.         for G, PED in {PedFindInAreaXYZ(0,0,0, 99999)} do
  19.             if PedIsValid(PED) and PED ~= gPlayer then
  20.                 if PedIsFemale(PED) and not PedIsModel(PED, 39) then
  21.                     PedSetEmotionTowardsPed(PED, gPlayer, 8)
  22.                     PedSetFlag(PED, 84, true)
  23.                 end
  24.             end
  25.         end
  26.     end
  27. end
Add Comment
Please, Sign In to add comment