Bully-Board

Bully Modding Section => Mod Showroom => Topic started by: bullymodder74 on October 06, 2015, 03:06:53 PM

Title: Jock Vs Preps By: Bully Modder
Post by: bullymodder74 on October 06, 2015, 03:06:53 PM
 ;D
https://www.youtube.com/watch?v=kRHV7Klrb1Y (https://www.youtube.com/watch?v=kRHV7Klrb1Y)
Title: Re: Jock Vs Preps By: Bully Modder
Post by: UltimateGamer9 on October 06, 2015, 10:17:49 PM
Nice work. But you can set the camera angle by:-

CameraSetXYZ(x,y,z)
CameraLookAtXYZ(x,y,z)


If you can do this. It will be cool.
Code: [Select]
function F_CameraSwitch()
while true do
if IsButtonBeingPressed(BUTTON,0) then -- 0 is the first controller
TextPrintString("Camera sets here.. blablabla..",4,1) -- You can add this if you want
CameraSetXYZ(x,y,z) -- The first camera angle
CameraLookAtXYZ(x,y,z) -- This sets where the camera will look at
elseif IsButtonBeingPressed(BUTTON,0) then
TextPrintString("Camera sets here ..whatever this will be",4,1) -- You can add this too
CameraSetXYZ(x2,y2,z2) -- This is the second one
CameraLookAtXYZ(x,y,z)
end
Wait(0)
end
end

function main()
F_CameraSwitch()
end

You can do this if you'd like.
Title: Re: Jock Vs Preps By: Bully Modder
Post by: bullymodder74 on October 07, 2015, 05:21:45 PM
a Thanks