-
Content Count
4 -
Joined
-
Last visited
-
Medals
Community Reputation
1 NeutralAbout Kill_Tha_Playah
-
Rank
Rookie
Recent Profile Visitors
452 profile views
-
Squad/Clan List - Please read the rules in first post!
Kill_Tha_Playah replied to Placebo's topic in ARMA 3 - SQUADS AND FANPAGES
Squad name: Awesome-Gamerz Timezone/location: EU Gamemode preference: PVE Contact email: N/A, contact the moderator or admin on Discord. Discord: https://discord.gg/K55XgUr TS: Not yet online, but will be active when we play with task_force_radio Short description: New group who has their own server, custom missions and campaigns. No preset game times. Looking for more interrested players and dedicated mission makers. We are open for suggestions and improvements. Language: English -
Script working on local host but not on server
Kill_Tha_Playah replied to Kill_Tha_Playah's topic in ARMA 3 - MISSION EDITING & SCRIPTING
I´ve no clue how to use publicVariables or server ones. could you please give me an example? -
Script working on local host but not on server
Kill_Tha_Playah replied to Kill_Tha_Playah's topic in ARMA 3 - MISSION EDITING & SCRIPTING
When I host this mission on a dedicated server, and myself as a client, the trigger won't work. The talkscript works fine, but when the script ends, Civbar1=true; will be activated and should the trigger let it walk to the next waypoint. -
Kill_Tha_Playah changed their profile photo
-
Kill_Tha_Playah started following Script working on local host but not on server
-
Script working on local host but not on server
Kill_Tha_Playah posted a topic in ARMA 3 - MISSION EDITING & SCRIPTING
Hello fellow editors, Im working now for hours on a simple script that must activate a trigger. It works fine on my localhost, but not on my server. I can't get it to work. Could you please take a look at it and help me out. There are probatly hunderds of topics about this subject, but I seached for hours and can't figger it out. (Noob :P) ------------------------------------------------------------------------------------------ Talk script: // Quick animation. titleText ["You: You are not allow to stand here, please move back to the barrier","PLAIN DOWN"]; 10; sleep 8; titleText ["Civilian: Alright, ill go.","PLAIN DOWN"]; 10; Civbar1=true; _gen = _this select 0; _caller = _this select 1; _id = _this select 2; _gen playmove "AidlPercSnonWnonDnon_talk1"; ------------------------------------------------------------------------------------------ initServer: // ============= Variables Civbar1 = false publicVariable "Civbar1"; Civbar2 = false publicVariable "Civbar2"; Civbar3 = false publicVariable "Civbar3"; ------------------------------------------------------------------------------------------ Trigger: variable name: Civbar1 Condition: Civbar1 on Act: rocivbar1 enableAI "move"; rocivbar2 enableAI "move"; rocivbar3 enableAI "move"; trigger has a waypoint activation set ------------------------------------------------------------------------------------------ Civilian: variable name: rocivbar1 init: talk1 = this addaction ["Tell civilians to move behind barrier","Scripts\interaction\Civi\CivBar1.sqf"];