i like this mod but its better if the body guards are the greasers, can u make one for me?
Of course I can!
thanks!
I need to finish Nerd Backup V1
It's the same as NMA(Nerd Mod Advanced)
But in Free roam.
I need to try and Keybind C
if IsButtonPressed(15,0)
Im trying to use that for my back up. I do not know where to put it to start the function in free roam for STimeCycle.lur Until then, Or I could try and do it now. Since I have free time.
In STimeCycle.lur
I recommend for anything you do to create a new function, the code is :
functionname = function()
under this code u write all the codes u want for 1 thing u want to add to free roam then use
end
until it shows u that u closed the function.
then inside
main = function()
you write this :
repeat
Wait(0)
between the repeat and the wait(0) lines you put the functions like this :
functionname()
Since u are using binds u will need the repeat and wait to make it loop and reset every time (makes it work all the time)
Here is an example :
Nerd = function()
if IsButtonBeingReleased(1,0) then (U can use IsButtonPressed to)
What that you want to happen here
elseif IsButtonBeingReleased (2,0) then (If u want to bind 2 buttons then use elseif)
end (finish up with how much end lines it says u need)
then in the main function :
main = function()
repeat
Nerd()
Wait(0)
end
Thanks dude you are a legend mate
Psh... Im more then a legend
Just kiddin, Anyway, nope, I ain't no legend, you wanna call someone a legend that would be MadmaN, Rise to Honor and Red blaster
Anyway, I am glad I helped, enjoy modding!