rellikki 7 Posted October 30, 2005 When I try to test my units in game, I get an error message 'Script Srk_facestex\randface.sqs not found'. I have no idea why it doesn't work, because there's no errors with the addon's pbo name, event handlers are ok (or so I think) and the script is in right file too... Here's my addon's (Srk_inf.pbo) event handler for my units, just in case: Quote[/b] ] class EventHandlers { Init = "_this exec {\Srk_facestex\randface.sqs}"; }; Share this post Link to post Share on other sites
Thunderbird 0 Posted October 30, 2005 Try: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE"> class EventHandlers { Init = "_this exec ""\Srk_facestex\randface.sqs"""; }; Regards TB84 Share this post Link to post Share on other sites
rellikki 7 Posted October 31, 2005 Thanks, but I've already tried that one, but I still get the same error. Share this post Link to post Share on other sites
UNN 0 Posted October 31, 2005 It should be: <table border="0" align="center" width="95%" cellpadding="0" cellspacing="0"><tr><td>Code Sample </td></tr><tr><td id="CODE">class EventHandlers   {   Init = "_this exec {\Srk_inf\randface.sqs}";   }; If the script is located in Srk_inf.pbo? Share this post Link to post Share on other sites
rellikki 7 Posted October 31, 2005 No, the script is in Srk_facestex.pbo Share this post Link to post Share on other sites
rellikki 7 Posted October 31, 2005 Problem solved. The file name was missing the .pbo end. Share this post Link to post Share on other sites