Jump to content

Search the Community

Showing results for tags 'quicksilver'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • BOHEMIA INTERACTIVE
    • BOHEMIA INTERACTIVE - NEWS
    • BOHEMIA INTERACTIVE - JOBS
    • BOHEMIA INTERACTIVE - GENERAL
  • FEATURED GAMES
    • Arma Reforger
    • Vigor
    • DAYZ
    • ARMA 3
    • ARMA 2
    • YLANDS
  • MOBILE GAMES
    • ARMA MOBILE OPS
    • MINIDAYZ
    • ARMA TACTICS
    • ARMA 2 FIRING RANGE
  • BI MILITARY GAMES FORUMS
  • BOHEMIA INCUBATOR
    • PROJECT LUCIE
  • OTHER BOHEMIA GAMES
    • ARGO
    • TAKE ON MARS
    • TAKE ON HELICOPTERS
    • CARRIER COMMAND: GAEA MISSION
    • ARMA: ARMED ASSAULT / COMBAT OPERATIONS
    • ARMA: COLD WAR ASSAULT / OPERATION FLASHPOINT
    • IRON FRONT: LIBERATION 1944
    • BACK CATALOGUE
  • OFFTOPIC
    • OFFTOPIC
  • Die Hard OFP Lovers' Club's Topics
  • ArmA Toolmakers's Releases
  • ArmA Toolmakers's General
  • Japan in Arma's Topics
  • Arma 3 Photography Club's Discussions
  • The Order Of the Wolfs- Unit's Topics
  • 4th Infantry Brigade's Recruitment
  • 11th Marine Expeditionary Unit OFFICIAL | 11th MEU(SOC)'s 11th MEU(SOC) Recruitment Status - OPEN
  • Legion latina semper fi's New Server Legion latina next wick
  • Legion latina semper fi's https://www.facebook.com/groups/legionlatinasemperfidelis/
  • Legion latina semper fi's Server VPN LEGION LATINA SEMPER FI
  • Team Nederland's Welkom bij ons club
  • Team Nederland's Facebook
  • [H.S.O.] Hellenic Special Operations's Infos
  • BI Forum Ravage Club's Forum Topics
  • Exilemod (Unofficial)'s General Discussion
  • Exilemod (Unofficial)'s Scripts
  • Exilemod (Unofficial)'s Addons
  • Exilemod (Unofficial)'s Problems & Bugs
  • Exilemod (Unofficial)'s Exilemod Tweaks
  • Exilemod (Unofficial)'s Promotion
  • Exilemod (Unofficial)'s Maps - Mission Files
  • TKO's Weferlingen
  • TKO's Green Sea
  • TKO's Rules
  • TKO's Changelog
  • TKO's Help
  • TKO's What we Need
  • TKO's Cam Lao Nam
  • MSOF A3 Wasteland's Server Game Play Features
  • MSOF A3 Wasteland's Problems & Bugs
  • MSOF A3 Wasteland's Maps in Rotation
  • SOS GAMING's Server
  • SOS GAMING's News on Server
  • SOS GAMING's Regeln / Rules
  • SOS GAMING's Ghost-Town-Team
  • SOS GAMING's Steuerung / Keys
  • SOS GAMING's Div. Infos
  • SOS GAMING's Small Talk
  • NAMC's Topics
  • NTC's New Members
  • NTC's Enlisted Members
  • The STATE's Topics
  • CREATEANDGENERATION's Intoduction
  • CREATEANDGENERATION's HAVEN EMPIRE (NEW CREATORS COMMUNITY)
  • HavenEmpire Gaming community's HavenEmpire Gaming community
  • Polska_Rodzina's Polska_Rodzina-ARGO
  • Carrier command tips and tricks's Tips and tricks
  • Carrier command tips and tricks's Talk about carrier command
  • ItzChaos's Community's Socials
  • Photography club of Arma 3's Epic photos
  • Photography club of Arma 3's Team pics
  • Photography club of Arma 3's Vehicle pics
  • Photography club of Arma 3's Other
  • Spartan Gamers DayZ's Baneados del Servidor
  • Warriors Waging War's Vigor
  • Tales of the Republic's Republic News
  • Operazioni Arma Italia's CHI SIAMO
  • [GER] HUSKY-GAMING.CC / Roleplay at its best!'s Starte deine Reise noch heute!
  • empire brotherhood occult +2349082603448's empire money +2349082603448
  • NET88's Twitter
  • Mercurious Brotherhood +2347063372861's +2347063372861>> I WANT TO JOIN OCCULT FOR MONEY RITUAL
  • 123betcasino01's Topics
  • TEORI BERITA's qqsuper99
  • QQSUPER99: Daftar Situs Slot Gacor Online Link Terbaru Gampang Menang's slot gacor
  • QQSUPER99: Daftar Situs Slot Gacor Online Link Terbaru Gampang Menang's slot gacor

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Website URL


Yahoo


Jabber (xmpp)


Skype


Biography


Twitter


Google+


Youtube


Vimeo


Xfire


Steam url id


Raptr


MySpace


Linkedin


Tumblr


Flickr


XBOX Live


PlayStation PSN


Origin


PlayFire


SoundCloud


Pinterest


Reddit


Twitch.Tv


Ustream.Tv


Duxter


Instagram


Location


Interests


Interests


Occupation

Found 1 result

  1. Hey guys, I am using the vehicle respawn script by Quicksilver and though its working fine for me I would like to get it to show a notification upon respawning the vehicle like the default BIS spawner does. This is the script: /* @filename: fn_vMonitor.sqf Credit: Tophe for earlier monitor script Author: Quiksilver Last modified: 23/10/2014 ArmA 1.32 Description: Vehicle monitor. This code must be spawned, not called. Ex. ______________________________________________________*/ if (!isServer) exitWith { /* GO AWAY PLAYER */ }; //======================================== CONFIG private ["_v","_t","_d","_s","_i","_sd","_sp","_ti","_u"]; #define DIST_FROM_SPAWN 150 _v = _this select 0; // vehicle _d = _this select 1; // spawn delay _s = _this select 2; // setup _i = _this select 3; // init _t = typeOf _v; // type _sd = getDir _v; // spawn direction _sp = getPosATL _v; // spawn position sleep (5 + (random 5)); [_v] call _i; //======================================== MONITOR LOOP while {true} do { //======================================== IF DESTROYED if (!alive _v) then { if (({((_sp distance _x) < 1.5)} count (entities "AllVehicles")) < 1) then { _ti = time + _d; waitUntil {sleep 5; (_ti < time)}; if (!isNull _v) then {deleteVehicle _v;}; sleep 0.1; _v = createVehicle [_t,[(random 1000),(random 1000),(10000 + (random 20000))],[],0,"NONE"]; sleep 0.1; waitUntil {!isNull _v}; sleep 0.1; _v setDir _sd; sleep 0.1; _v setPos [(_sp select 0),(_sp select 1),((_sp select 2)+0.1)]; sleep 0.1; [_v] call _i; }; }; sleep (5 + (random 5)); //======================================== IF ABANDONED if ((_v distance _sp) > DIST_FROM_SPAWN) then { if (isMultiplayer) then {_u = playableUnits;} else {_u = switchableUnits;}; if (({(_v distance _x) < PARAMS_VehicleRespawnDistance} count _u) < 1) then { if ((count (crew _v)) == 0) then { _v lock 2; _v allowDamage FALSE; _v setPos [(random 1000),(random 1000),(10000 + (random 20000))]; _v enableSimulationGlobal FALSE; _v hideObjectGlobal TRUE; waitUntil { sleep (5 + (random 5)); (({(_sp distance _x) < 1.5} count (entities "AllVehicles")) < 1) }; _v enableSimulationGlobal TRUE; _v hideObjectGlobal FALSE; _v allowDamage TRUE; _v lock 0; _v setDir _sd; sleep 0.1; _v setPos _sp; sleep 0.1; _v setDamage 0; sleep 0.1; _v setVehicleAmmo 1; sleep 0.1; if ((fuel _v) < 0.95) then {[[_v,1],"setFuel",true,false] spawn BIS_fnc_MP;}; if (isEngineOn _v) then {_v engineOn FALSE;}; sleep 0.1; if (isCollisionLightOn _v) then {_v setCollisionLight FALSE;}; sleep 0.1; if (isLightOn _v) then {_v setPilotLight FALSE;}; sleep 0.1; }; }; }; sleep (20 + (random 20)); }; And this is the part that goes into the vehicles init line. I have gone over it and tried various ways to get it to show a notification but to no avail. 0 = [this,30,FALSE,QS_fnc_vSetup02] spawn QS_fnc_vMonitor; Please, any help? thanks :)
×