Peculiar Macro Issue?? in Developer Help
|
|
Code:
client/proc addMacro(kKey as text, runProc as command_text, repeat = 0, release = 0, shift = 0, alt = 0, ctrl = 0) if(release) kKey += "+UP" if(repeat) kKey += "+REP" if(shift) kKey += "+SHIFT" if(alt) kKey += "+ALT" if(ctrl) kKey += "+CTRL" winset(src,kKey,{"parent="Game";name=[kKey];command="[escape_text(runProc)]""})
mob/verb ApplyBind(k,cmd) src.macs[k]="NAME OF COMMAND" src.m_cmd[k]=cmd src.client.addMacro(k,cmd,1,0,0,0,0)
|
Problem description:
the second (grey) line doesnt work, but the first one does.
ofc - I only ever have one or the other.
the difference is the 1/0 in the argument. And it represents the REPEAT argument
|