Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Do not use Works in Progress as a way of avoiding the releases system! Works in Progress can be used for sharing early betas and for getting suggestions for improvement. Releases of finished content are not allowed in this forum! If you would like to submit a finished addon, click here for instructions on how to do so.
Hey so I'm trying to make a character wad and I have this problem that makes it so I can't get it to shoot arrows with out having frozenLake's Robo Hood character wad active at the same time, is there a way to fix this?
I think you can use P_SpawnPlayerMissile(player.mo, MT_ARROW) or something like that inside of a SpinSpecial hook. As a matter of fact, the code would look something like this:
Code:
addHook("SpinSpecial", function(player)
if player.mo.skin == "skinname" then
P_SpawnPlayerMissile(player.mo, MT_ARROW)
end
end)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.