Jump to content
  • 0

Script restriction #22


Gromes

Question

13 answers to this question

Recommended Posts

  • 0
24.04.2015 17:21:06: Gromes (84.10.98.98:2304) d27a58d0d5e28923ba85e2c2a37734cb - #22 "= compile preProcessFileLineNumbers "LSpawner\LSdeleter.sqf";
execVM "LSpawner\Lootspawner.sqf";
};
"
24.04.2015 17:26:28: Gromes (84.10.98.98:2304) d27a58d0d5e28923ba85e2c2a37734cb - #22 "= compile preProcessFileLineNumbers "LSpawner\LSdeleter.sqf";
execVM "LSpawner\Lootspawner.sqf";
};
"
Link to comment
Share on other sites

  • 0

 

24.04.2015 17:21:06: Gromes (84.10.98.98:2304) d27a58d0d5e28923ba85e2c2a37734cb - #22 "= compile preProcessFileLineNumbers "LSpawner\LSdeleter.sqf";
execVM "LSpawner\Lootspawner.sqf";
};
"
24.04.2015 17:26:28: Gromes (84.10.98.98:2304) d27a58d0d5e28923ba85e2c2a37734cb - #22 "= compile preProcessFileLineNumbers "LSpawner\LSdeleter.sqf";
execVM "LSpawner\Lootspawner.sqf";
};
"

 

you forgot this ?

put this in init.sqf 

if (isServer) then {

    fn_getBuildingstospawnLoot = compile preProcessFileLineNumbers "fn_LSgetBuildingstospawnLoot.sqf";

    LSdeleter = compile preProcessFileLineNumbers "LSdeleter.sqf";

    execVM "Lootspawner.sqf";

};

Link to comment
Share on other sites

  • 0

What is the filter listed in script.txt on line 23? 

 

That is the filter you need to add an exception for, according to the script.log? 

 

You have already all the things you need to fix your kicks - all you need to do is see what you are doing wrong at this point. 

What are you trying to put in? 

Link to comment
Share on other sites

  • 0

Ok..  So - on line 23 - do you see anything that is related to your kick? 

 

Step 1: Identify Filter Line. 

The filter is "exec".

 

Step 2: Identify from Log what might trigger the kick.

 

Your kick: 

 

24.04.2015 17:26:28: Gromes (84.10.98.98:2304) d27a58d0d5e28923ba85e2c2a37734cb - #22 "= compile preProcessFileLineNumbers "LSpawner\LSdeleter.sqf";

execVM "LSpawner\Lootspawner.sqf";
};

 

Step 3: Create Exception for your filter: 

 

You need to add an exception for the filter to ignore the line starting with the red-marked exec. I wont help you with that one - I want to see what you come up with to see if you understood the guide on BE Filters. 

Link to comment
Share on other sites

  • 0

Close - getting there. :) 

 

At the end of the line on 23, add that - but put quotes around the exception, and escape the quote marks that are part of the code: 

 

!="execVM \"LSpawner\Lootspawner.sqf\";"

 

Now, that line will ONLY trigger an exception to the content within the first and last quote marks - if it is being called in another way, you are likely to get another kick for that, which you need to make a filter for as well. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
  • Discord

×
×
  • Create New...