After having a conversation with the developer he has requested that we remove our script from the forums.
This decision was made after a discovery made from one of our community members, although this was public someone had decided to take credit for what wasn’t theirs. we had already been skeptical about releasing publicly but this was what put us over the line. I support releasing publicly to help grow but unfortunately we’ve now seen the negatives. because of the headache this has caused we’ve decided to remove it from the forums to save us the time and not get worked up about what isn’t worth getting worked up about.
I personally apologize to those who used this script and were looking for updates but we will be stopping our support for future releases.
I anticipate that the admins will most likely remove this post as it does not include any downloads to any scripts and is now misplaced in the forums. I fully understand.
Im sure someone will re-upload this or continue it and to them I say good luck.
Very nice and we appreciate you sharing this with us.
This is a great community and we are blessed to have all these people share the projects they have created with less fortunate members that do not know how to make stuff themselves.
if msg == "/civ" then
CancelEvent();
TriggerClientEvent('giveLoadoutCiv', source);
end
Then in your client code, add a new event called giveLoadoutCiv (just copy paste the one he has already and change the name and adjust the items you want to give).
if random_caution >= 30 and random_caution < 40 then
caution_code = caution_code .. "M ";
elseif random_caution >= 40 and random_caution < 50 then
caution_code = caution_code .. "A ";
end
Change the "M " and the "A " to what you want it to say.
For example, caution_code = caution_code .. "Polr is a bad guy";
Ok thanks one more thing i noticed when running id’s they almost always come back as W or warrent can i change it so people do not come back with a warrent as much?
In pedsearch.lua if random_warrant <= 8 then
has_warrant = true;
end
Change that 8 to a lower number.
What the code does, it selects a random number between 0 and 100. If it is less than or equal to 8, they will have a warrant. It really shouldn’t happen too often, but you can lower that number to decrease it anyway.