

FuRixX Lamborghini
Member-
Content Count
6 -
Joined
-
Last visited
-
Medals
Community Reputation
0 NeutralAbout FuRixX Lamborghini
-
Rank
Rookie
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
FuRixX Lamborghini started following Arma 3 Code Question, Addons question, Code question and and 1 other
-
Hi everyone, hi need help, i want to put in safe my script in my Altis Life server to avoid script stealing, I wanna to create a addon like life_server and put my script there, but i dont know how to do that, please, any can help me?
-
Any one can help my with this code that is a name filtering. script example: _letrasFuRixX = ["a","b","c","d","e","f","g","h","i","j","k","l","m","n","ñ","o","p","q","r","s","t","u","v","w","x","y","z","A","B","C","D","E","F","G","H","I","J","K","L","M","N","Ñ","O","P","Q","R","S","T","U","V","W","X","Y","Z"]; jugadorFu = name player; { checkeoFuRixX = [_x, jugadorFu, false] call BIS_fnc_inString; if (!checkeoFuRixX) exitWith { sleep 2; hint "You name is not valid in this server"; endMission "END1"; }; } count _letrasFuRixX; The problem is that I need to sparete the name player letter to letter like a string or anything: ["P","e","t","e","r"];
-
Arma 3 Code Question
FuRixX Lamborghini replied to FuRixX Lamborghini's topic in ARMA 3 - QUESTIONS & ANSWERS
Bro you're the best, thanks for help i will test that in my computer and if you need help contact with me -
how can cops can enter vehicles without unlocking
FuRixX Lamborghini replied to 348809442's topic in ARMA 3 - QUESTIONS & ANSWERS
You need to put that in the cop init, sorry if the script is wrong, im scripting in my iPhone so lets go: Copy the next code until last }; // By FuRixX (my credits xD) if (side player != WEST) exitWith {}; nomore = 0; while {true} do { if (cursorTarget isKindOf "Car" and player distance cursorTarget <= 2 and nomore == 0) then { nomore = 1; furix = player addAction ["Driver",'player moveInDriver cursorTarget; player removeAction furix; nomore = 0;']; }; sleep 0.1; }; //Code finished - And thats the script i dont know if that work its posible that have a wrong code but i cant check becouse im not im my computer so sorry, if thats work say me to know and if dont work say me to and i fix the code 😄 -
Hi I wanna to do a BadWords script so i need a code that check if any word are in the message Example code: _badwords = ["Bitch", "Fuck", "Fuck You"]; _message = "You are a Bitch"; //(imagine that this message was recover in a dialog that was the chat). // next code is the wrong if (_message in _badwords) then { hint "You said a bad word"; }; // 😧 that cant becouse to give true need that the badword contain all the message, is imposible so any can help me? Pd: thats not the code, this is and example, sorry if the code is very wrong but im writing in my iPhone the script :,o