Advertisement
Guest User

Init.sqf

a guest
May 29th, 2015
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. //[] execVM "trader\init.sqf";
  2. //[] execVM "trader\HALV_takegive_crypto_init.sqf";
  3. //[] execVM "trader\resetvehicleammo.sqf";
  4. [] execVM "addons\messages\init.sqf";
  5. if (!isDedicated) then
  6. {
  7. "VEMFChatMsg" addPublicVariableEventHandler
  8. {
  9. systemChat ((_this select 1) select 0);
  10. [
  11. [
  12. [((_this select 1) select 0),"align = 'center' size = '1' font='PuristaBold'"],
  13. ["","<br/>"],
  14. [((_this select 1) select 1),"align = 'center' size = '0.5'"]
  15. ]
  16. ] spawn BIS_fnc_typeText2;
  17. VEMFChatMsg = nil;
  18. };
  19. };
  20. if (hasInterface) then // Make sure only the client or host executes this. A server won't execute it.
  21. {
  22. /*private["_SC_restartIntvlHours"];
  23. // Please edit the 3 lines below to your likings
  24. _SC_restartIntvlHours = 4; // Change the number 1 into the number of hours your server will be up before it restarts
  25. _SC_restartWarnTopMessage = "== WARNING =="; // What the first line of the warning should say
  26. _SC_restartTimeHintSilent = false; // RECOMMENDED: false; If true, it will mess with debug monitor!
  27. ////////////////////// DO NOT CHANGE ANYTHING BELOW THIS LINE
  28. [_SC_restartIntvlHours, _SC_restartWarnTopMessage, _SC_restartTimeHintSilent] ExecVM "warnings\SC_restartTime.sqf";*/
  29. //[] execVM "service\service_point.sqf";
  30. //[] execVM "custom\HALV_takegive_crypto_init.sqf";
  31. [] execVM "hellothere\hellothere.sqf";
  32. [] execVM "addons\Status_Bar\init_statusBar.sqf";
  33. [] execVM "semClient.sqf";
  34. };
  35. /*Supply Drop Alert Event
  36. "SDROP_Alert" addPublicVariableEventHandler {
  37. hint parseText format["%1", _this select 1];
  38. };*/
  39. //////////////////////////////////////////////////////////////////////////
  40. //cmEARPLUGS CODE START
  41. call compile preProcessFileLineNumbers "cmEarplugs\config.sqf";
  42. //cmEARPLUGS CODE END
  43. //////////////////////////////////////////////////////////////////////////
  44. [] execVM "wai\remote.sqf";
  45. [] execVM "addons\halv_spawn\init.sqf";
  46. #include "A3EAI_Client\A3EAI_initclient.sqf";
  47. waitUntil{!isNull (uiNameSpace getVariable ["EPOCH_loadingScreen", displayNull])};
  48. waitUntil{isNull (uiNameSpace getVariable "EPOCH_loadingScreen")};
  49. sleep 5;
  50. Deployaction = player addaction [("<t color=""#00CF11"">" + ("Craft Bike") +"</t>"),"addons\bike.sqf","",-97,false,false,"",""];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement