Once I get that upgrade to 36-hour days, I will tackle that. – Mychaeel

Unreal Wiki:Sandbox

From Unreal Wiki, The Unreal Engine Documentation Site
Revision as of 16:57, 17 February 2008 by Wormbo (Talk | contribs) (testing uscript highlighting)

Jump to: navigation, search

Do not edit the area above the separator line, please.


  • This correctly replaces, but for obvious reasons doesn't produce links correctly: a, [b]], [c]]
  • This doesn't even apply #replace: [[{{#replace:a,b,c|,|]], [[}}]]
  • This works, but is very ugly: a, b, c
  • Still ugly, but a bit better: a, b, c
class TestCommandlet extends Commandlet;
 
function int Main(string Args)
{
  DynamicLoadObject(Args, class'Class');
 
  return 0;
}