Bully-Board
Bully Modding Section => Modding Questions/Help => Modding Questions/Help Archives => Topic started by: bullymodder74 on January 10, 2016, 09:27:11 PM
-
PlayerModelSwap put the code ( " ) and put the play in game press the button to set white and did not appear to me sprint alt space etc buttons and the buttons were not only looked invicible anyone know how to fix this ? :(
-
Are you okay m8?
-
PlayerModelSwap put the code ( " ) and put the play in game press the button to set white and did not appear to me sprint alt space etc buttons and the buttons were not only looked invicible anyone know how to fix this ? :(
it's PlayerSwapModel not PlayerModelSwap and how to switch model is. PlayerSwapModel("Nemesis_Gary") this is an example u can find more models in World.img
-
Dude what are you saying? :confused: I seriously am confused as to what exactly you want. Please try a different method of translation or something it is irritating reading your sentences and trying to figure out if a half drunk is typing on the computer.
With the buttons you have to set the buttons to run on an if function like
if isbuttonpressed(8) and PedIsPlaying(ActionNode)then
(ActionNode)
end
for the PlayerSwapModel
MissionSetup = function()
--Running Model's can crash the game if not set right please check spelling.
SwapModel = false
end
SwapModelTesting = function()
if isbuttonpressed(8) and Swapmodel = false then
PlayerSwapModel("Nemesis_Gary")
true
Wait(4000)-- Wait 4 seconds
false
end
main = function()
repeat
SwapModelTesting()
Wait(0)
until not Alive
end
8)
-
Dude what are you saying? :confused: I seriously am confused as to what exactly you want. Please try a different method of translation or something it is irritating reading your sentences and trying to figure out if a half drunk is typing on the computer.
With the buttons you have to set the buttons to run on an if function like
if isbuttonpressed(8) and PedIsPlaying(ActionNode)then
(ActionNode)
end
MissionSetup = function()
--Running Model's can crash the game if not set right please check spelling.
SwapModel = false
Thanks AlphaTech
end
SwapModelTesting = function()
if isbuttonpressed(8) and Swapmodel = false then
PlayerSwapModel("Nemesis_Gary")
true
Wait(4000)-- Wait 4 seconds
false
end
main = function()
repeat
SwapModelTesting()
Wait(0)
until not Alive
end
8)
-
To even correct myself
This is keyboard
if isbuttonpressed(8,0) and SwapModel = false then
PlayerSwapModel("Nemesis_Gary")
true
Wait(4000)-- Wait 4 seconds
false
end
I think this is controller
if isbuttonpressed(0,8) and SwapModel = false then
PlayerSwapModel("Nemesis_Gary")
true
Wait(4000)-- Wait 4 seconds
false
end