ok, I found this safe zone script and so far I have no complaints except for the title text it uses overwrites the title text from entering a trader city. I could disable one or the other, but I want them both to show if possible.
Can I have the dami_sz text display below the trader city text?
here is how the dami_sz is called:
in the init.sqf
[] execVM "scripts\dami_SZ.sqf";
in the mission.sqm file, just add inSafeZone = TRUE (or false for when exiting)
expActiv="TitleText[""Now entering trader city Stary"",""PLAIN DOWN""]; canbuild = false; insafezone = true; inTraderCity = ""Stary"";"; expDesactiv="TitleText[""Now leaving trader city Stary"",""PLAIN DOWN""]; canbuild = true; insafezone = false; inTraderCity = ""Any"";";
in the dami_SZ.sqf it calls the title text
_txt = "You have entered a safezone! Running people over, stealing, or griefing within safezones shall result in a ban! YOU HAVE BEEN WARNED!"; systemChat ("SAFE-ZONE: "+str _txt+""); cutText [_txt,"PLAIN DOWN"];