(adsbygoogle = window.adsbygoogle || []).push({});
How do you notify the same command for two actionslots without writing 2 different functions?
for example...
If I want to print something if I press left or right..
self notifyOnPlayerCommand( "R", "+actionslot 4" );
self notifyOnPlayerCommand( "L", "+actionslot 3" );
for(;
{
self waittill( "R" );
self waittill( "L" );
if(self.PickedNumber = 0){iprintlnbold("text");}
that doesn't work unless you press Left AND Right !!
Im thinking i need the || (or) command but is there another way?
(I'm not expecting lots of replies.. Are you there Mossy?!)