Jump to content
Sign in to follow this  
rellikki

Cannot load script

Recommended Posts

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

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

Thanks, but I've already tried that one, but I still get the same error. sad_o.gif

Share this post


Link to post
Share on other sites

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

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×