• Why wont this work?? :c
    2 replies, posted
why does this////.....[B]elseif self.Owner:KeyDown(IN_FORWARD | IN_BACK | IN_MOVELEFT | IN_MOVERIGHT) then[/B] Return this: [B]')' Expected near '|' 1. unknown - lua/weapons/weapon_mad_base/shared.lua:0[/B] It seemed simple enough to fix but after i put this [B]elseif self.Owner:KeyDown(IN_FORWARD[I][U])[/U][/I] | IN_BACK | IN_MOVELEFT | IN_MOVERIGHT) then[/B] it then asks for [B]'then' expected near '|'[/B] (and if i put a then thare i know it wont do the same thing)... I've fixed other parts of the lua but i cant figure this out :/ Help? [highlight](User was banned for this post ("utt" - garry))[/highlight]
elseif self.Owner:KeyDown(bit.bor(IN_FORWARD, IN_BACK, IN_MOVELEFT, IN_MOVERIGHT)) then
ty :D
Sorry, you need to Log In to post a reply to this thread.