Jump to content

Custom Spawn Dialog with Gear & HALO Selection, moving Map, Credits, Custom spawns and more ...


Halvhjearne

Recommended Posts

  On 6/10/2016 at 10:37 PM, Ghostrider-GRG said:

 

class LineMarker

{

lineDistanceMin = 3e-005;

lineLengthMin = 2;

lineWidthThick = 0.013;

lineWidthThin = 0.005;

textureComboBoxColor = "#(argb,8,8,3)color(1,1,1,1)";

}
Expand  

So add this to HALV_RscMapControl: there seems to be two - one in Halv_defines.hpp and one in spawndialog.hpp

Can someone plz post the file where this goes i have tried a few places and i either get the error as before or I join server and all slots in lobby show as AI (weird)

i have tried this:

  Reveal hidden contents
  Reveal hidden contents


thanks

MegaZ

 

SOLVED 

I had 2 Halv_defines and was calling the trader one but altering the spawn one.    :wub:

Link to comment
Share on other sites

  • 5 months later...

i need your help, i put this

class LineMarker

{

lineDistanceMin = 3e-005;

lineLengthMin = 2;

lineWidthThick = 0.013;

lineWidthThin = 0.005;

textureComboBoxColor = "#(argb,8,8,3)color(1,1,1,1)";

}

inside the two files

spawndialog.hpp

Halv_defines.hpp

and now i have this error

 

 

Sans titre.png

Link to comment
Share on other sites

ok, no more error for me ... my process

first i remove the halv define inside trader file

second inside spawndialog.hpp i replace at line 49

  Quote

        class HALV_spawn_map: HALV_RscMapControl
        {
            idc = 7775;
            text = "";
            x = 0.35567 * safezoneW + safezoneX;
            y = 0.137091 * safezoneH + safezoneY;
            w = 0.438144 * safezoneW;
            h = 0.725818 * safezoneH;
        };

Expand  

by

  Quote

        class HALV_spawn_map: HALV_RscMapControl
        {
            idc = 7775;
            text = "";
            x = 0.35567 * safezoneW + safezoneX;
            y = 0.137091 * safezoneH + safezoneY;
            w = 0.438144 * safezoneW;
            h = 0.725818 * safezoneH;
        class LineMarker
        {
        lineDistanceMin = 3e-005;
        lineLengthMin = 2;
        lineWidthThick = 0.013;
        lineWidthThin = 0.005;
        textureComboBoxColor = "#(argb,8,8,3)color(1,1,1,1)";
        }};

Expand  

and at line 137

  Quote

        class HALV_gear_list: HALV_CT_TREE  

        {
            idc = 7779;
            x = 0.35567 * safezoneW + safezoneX;
            y = 0.137091 * safezoneH + safezoneY;
            w = 0.438144 * safezoneW;
            h = 0.725818 * safezoneH;
            onTreeDblClick = "_this call Halv_ontreedoubleclick; false";
            onTreeSelChanged = "_this call Halv_ontreeselected; false";
        };

Expand  

by

  Quote

        class HALV_gear_list: HALV_CT_TREE
        {
            idc = 7779;
            x = 0.35567 * safezoneW + safezoneX;
            y = 0.137091 * safezoneH + safezoneY;
            w = 0.438144 * safezoneW;
            h = 0.725818 * safezoneH;
            onTreeDblClick = "_this call Halv_ontreedoubleclick; false";
            onTreeSelChanged = "_this call Halv_ontreeselected; false";
            colorPicture[] = {1,1,1,1};
            colorPictureSelected[] = {0.8,0,0,0.8};
            colorPictureDisabled[] = {0.8,0,0,0.8};
            colorPictureRight[] = {0.8,0,0,0.8};
            colorPictureRightSelected[] = {0.8,0,0,0.8};
            colorPictureRightDisabled[] = {0.8,0,0,0.8};
        };

Expand  

 

Link to comment
Share on other sites

  • 2 weeks later...
  • 2 weeks later...

So... Epoch 1.3 added the beautiful Teleport Booths and you use Halv's Spawn scripts? Well, I have some good news for you... you can easily modify things to make it so that when you enter the booth the spawn screens come up automatically - no more scroll wheel or having replacement iPad screens that always seem to fall over :ph34r:

Okay, the following assumes that you have Halv's spawn scripts installed in addons/halv_spawn in your mission file. Amend the instructions where appropriate if you put it somewhere else...

First, alter the following line in addons/halv_spawn/init.sqf from: 

	_deletedefaultteleporters = true;

to:

	_deletedefaultteleporters = false;

Next, comment these two lines in addons/halv_spawn/spawndialog.sqf:

//{_x addAction [format["<img size='1.5'image='\a3\Ui_f\data\IGUI\Cfg\Actions\ico_cpt_start_on_ca.paa'/> <t color='#0096ff'>%1</t><t > </t><t color='#00CC00'>%2</t>",localize "STR_HALV_SCROLL_SELECT",localize "STR_HALV_SCROLL_SPAWN"],(_scriptpath+"opendialog.sqf"),_x, -9, true, true, "", "player distance _target < 5"];}forEach (HALV_senddeftele select 0);
//diag_log format["[halv_spawn] addAction added to %1",HALV_senddeftele];

Finally, replace the contents of epoch_code/compile/EPOCH_EnterBuilding.sqf with this:

/*
	Author: Aaron Clark - EpochMod.com

    Contributors:

	Description:
	Epoch request teleport

    Licence:
    Arma Public License Share Alike (APL-SA) - https://www.bistudio.com/community/licenses/arma-public-license-share-alike

    Github:
    https://github.com/EpochModTeam/Epoch/tree/release/Sources/epoch_code/compile/EPOCH_EnterBuilding.sqf
*/
if !(isNull _this) then{
	//[player,_this,Epoch_personalToken] remoteExec ["EPOCH_server_teleportPlayer",2];
	[] execVM "addons\halv_spawn\opendialog.sqf";
};

And you are done. Repack and upload the mission file and when you enter the TP booth the spawn screens will magically appear!

Link to comment
Share on other sites

  • 4 weeks later...

After new Arma Update :

 


class Halv_spawn_dialog
{
	idd=7777;
	moveingenabled=false;
	class controls
	{
		class HALV_spawn_backtext: HALV_IGUIBack
		{
			idc = -1;
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.840914 * safezoneH + safezoneY;
			w = 0.159794 * safezoneW;
			h = 0.0219945 * safezoneH;
		};
		class HALV_spawn_frametext: HALV_RscFrame
		{
			idc = -1;
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.840914 * safezoneH + safezoneY;
			w = 0.159794 * safezoneW;
			h = 0.0219945 * safezoneH;
		};
		class HALV_spawn_back: HALV_IGUIBack
		{
			idc = -1;
			x = 0.180412 * safezoneW + safezoneX;
			y = 0.115097 * safezoneH + safezoneY;
			w = 0.628866 * safezoneW;
			h = 0.769807 * safezoneH;
		};
		class HALV_spawn_frame: HALV_RscFrame
		{
			idc = -1;
			text = "Acryl-Gaming.de";
			x = 0.180412 * safezoneW + safezoneX;
			y = 0.115097 * safezoneH + safezoneY;
			w = 0.628866 * safezoneW;
			h = 0.769807 * safezoneH;
		};
		class HALV_spawn_mapframe: HALV_RscFrame
		{
			idc = -1;
			x = 0.35567 * safezoneW + safezoneX;
			y = 0.137091 * safezoneH + safezoneY;
			w = 0.438144 * safezoneW;
			h = 0.725818 * safezoneH;
		};
		class HALV_spawn_map: HALV_RscMapControl
        {
            idc = 7775;
            text = "";
            x = 0.35567 * safezoneW + safezoneX;
            y = 0.137091 * safezoneH + safezoneY;
            w = 0.438144 * safezoneW;
            h = 0.725818 * safezoneH;
			widthRailWay = 1;
        class LineMarker

        {

			lineDistanceMin = 3e-005;

			lineLengthMin = 2;

			lineWidthThick = 0.013;

			lineWidthThin = 0.005;

			textureComboBoxColor = "#(argb,8,8,3)color(1,1,1,1)";
			
        }
        };

		class HALV_spawn_listboxframe: HALV_RscFrame
		{
			idc = -1;
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.18108 * safezoneH + safezoneY;
			w = 0.159794 * safezoneW;
			h = 0.659834 * safezoneH;
		};
		class HALV_spawn_list: HALV_RscListBox
		{
			idc = 7776;
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.18108 * safezoneH + safezoneY;
			w = 0.159794 * safezoneW;
			h = 0.659834 * safezoneH;
			onLBSelChanged = "if(HALV_SELECTSPAWN)then{_this call Halv_moveMap}; false";
			onLBDblClick = "if(HALV_SELECTSPAWN)then{_this call Halv_spawn_player}else{_this call HALV_player_removelisteditem;}; false";
		};
		class HALV_spawn_haloframe: HALV_RscFrame
		{
			idc = -1;
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.137091 * safezoneH + safezoneY;
			w = 0.0773196 * safezoneW;
			h = 0.043989 * safezoneH;
		};
		class HALV_spawn_butframe: HALV_RscFrame
		{
			idc = -1;
			x = 0.273196 * safezoneW + safezoneX;
			y = 0.137091 * safezoneH + safezoneY;
			w = 0.0824742 * safezoneW;
			h = 0.043989 * safezoneH;
		};
		class HALV_spawn_butselectspawn: HALV_RscCheckbox
		{
			idc = 7781;
			x = 0.273196 * safezoneW + safezoneX;
			y = 0.137091 * safezoneH + safezoneY;
			w = 0.0824742 * safezoneW;
			h = 0.043989 * safezoneH;
//\A3\Air_F_Beta\Parachute_01\Data\UI\Portrait_Parachute_01_CA.paa
			strings[] = {"$STR_HALV_HALO"};
//\a3\soft_f_beta\Truck_01\Data\UI\Truck_01_covered_CA.paa
			checked_strings[] = {"$STR_HALV_GROUND"};
			onCheckBoxesSelChanged = "if(_this select 2 == 0)then{HALV_HALO = true;systemChat localize ""STR_HALV_HALO_SELECTED"";}else{HALV_HALO = false;systemChat localize ""STR_HALV_GROUND_SELECTED"";};false";
			tooltip = "$STR_HALV_PRESSSELECT_HALO_OR_GROUND";
			colorTextSelect[] = {0.6,0.298,0,1};
		};//102,51,0 - 0.4,0.2,0 //153,76,0 - 0.6,0.298,0
		class HALV_spawn_halocheck: HALV_RscCheckbox
		{
			idc = 7780;
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.137091 * safezoneH + safezoneY;
			w = 0.0773196 * safezoneW;
			h = 0.043989 * safezoneH;
			strings[] = {"$STR_HALV_SELECT_GEAR"};
			checked_strings[] = {"$STR_HALV_SELECT_SPAWN"};
			onCheckBoxesSelChanged = "_this call HALV_switch_spawngear;false";
			colorText[] = {0.8,0,0,0.8};
			tooltip = "$STR_HALV_SELECT_GEAR_OR_SPAWN";
		};
		class HALV_spawn_text: HALV_RscStructuredText
		{
			idc = -1;
			text = "ts3.acryl-gaming.de";
			x = 0.195876 * safezoneW + safezoneX;
			y = 0.840914 * safezoneH + safezoneY;
			w = 0.159794 * safezoneW;
			h = 0.0219945 * safezoneH;
		};

		class HALV_gear_list: HALV_CT_TREE
		{
			idc = 7779;
			x = 0.35567 * safezoneW + safezoneX;
			y = 0.137091 * safezoneH + safezoneY;
			w = 0.438144 * safezoneW;
			h = 0.725818 * safezoneH;
			onTreeDblClick = "_this call Halv_ontreedoubleclick; false";
			onTreeSelChanged = "_this call Halv_ontreeselected; false";
			colorPicture[] = {0,0,0,0.4};
			colorPictureSelected[] = {0,0,0,0.4};
			colorPictureDisabled[] = {0,0,0,0.4};
			colorPictureRight[] = {0,0,0,0.4};
			colorPictureRightSelected[] = {0,0,0,0.4};
			colorPictureRightDisabled[] = {0,0,0,0.4};
			
		};
	};
};

 

Link to comment
Share on other sites

  On 9/22/2017 at 6:03 PM, RetroTorero said:

Had the same issue here.

That was my line:

 

if (((_distance/(_curTime-_lastTime)) > "+str _maxTravelDistance+") && _notNearbySpawn && (player == vehicle player) && animationState player != 'halofreefall_non') then {

i completely deleted this line and put in this one:

 

if (((_distance/(_curTime-_lastTime)) > 10) && _notNearbySpawn && (player == vehicle player) && animationState player != 'halofreefall_non') then {


Now it´s working fine. (about 4 tested Halo jumps)


for everyone who´s looking for the server_securityfunctions.sqf:

it´s in the /arma3/@EpochHive/addons/epoch_server,pbo file.

ty!

edit: 5th try and bounce to ALT 1200 Meters... damn

so it´s not working.

Expand  

Hello RetroTorero, did you find a solution ? same problem ... i use only admin menu not infistar 

 

i try to disable 

antihack_addActionCheck = "false"; // false to disable addAction checks

doesn't change

Link to comment
Share on other sites

  • 4 weeks later...

So, I got all the dialogues working, but when I double click to spawn on a location nothing happens.  Not sure what I did wrong.  I tried the teleporters walk in method and no dialogue pops.  I went back and rolled back all my changes from this and tried just getting the biometric hand prints to work with the middle mouse menu.  The dialogue pops up, but again when selecting a spawn point nothing happens.

Link to comment
Share on other sites

  On 3/31/2019 at 9:20 PM, He-Man said:

Check this

 

Expand  

ok i try this and now i have the same error like locodino, i can choose my items and the spawn point, when i confirm nothing happen .... lock inside white room ...

 

i found this inside my rpt log without the modification from grahame

  Quote


12:01:26 "[halv_spawn] waiting for default 'Debug_static_F' to be build in Altis @ (236180) [23600.6,18000.8,0]"


12:01:38 "[halv_spawn] found some default teleporters ... _deletedefaultteleporters: 'false'"
12:01:38 "[halv_spawn] sendt teleporters and default positions to clients, 0 textures build"

Expand  

and i try without the modification from grahame, same error, lock inside spawn box

 

without the modification of the file epoch_code/compile/EPOCH_EnterBuilding.sqf, spawn work but not halv spawn ... when i spawn i don't have credit message 

Link to comment
Share on other sites

Yeah, I am not sure where the actual teleport happens in the script.  Between this and the mission system not starting, it seems like I might be having another issue all together.  If I have time tonight I am going to drop this script and create a new vanilla Epoch Test environment with JUST the mission system and zero changes.  Once I get that working I am going to add back in teh status bar.  Once those are working nice, I am going to revert back to vanilla and try to get this working in 1.3.1 with the default teleport tubes.  Hopefully I will understand more by then about how these scripts are called and how they are functioning.

Link to comment
Share on other sites

  On 4/2/2019 at 6:46 PM, Locodino said:

Yeah, I am not sure where the actual teleport happens in the script.  Between this and the mission system not starting, it seems like I might be having another issue all together.  If I have time tonight I am going to drop this script and create a new vanilla Epoch Test environment with JUST the mission system and zero changes.  Once I get that working I am going to add back in teh status bar.  Once those are working nice, I am going to revert back to vanilla and try to get this working in 1.3.1 with the default teleport tubes.  Hopefully I will understand more by then about how these scripts are called and how they are functioning.

Expand  

I am happy to share the Halve spawn script with updates. Just shoot me a PM here or on discord.

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...