Fleischer110 3 Report post Posted November 12, 2018 (edited) I added this to my config, server start does not work correctly. what am I doing wrong? Please help. class Flag { targetType = 2; target = "Exile_Construction_Flag_Static "; class Actions { class Payprotection: ExileAbstractAction { title = "Pay Protection"; condition = "true"; action = "_this call ExileClient_gui_payTerritoryProtectionMoneyDialog_show"; }; class Upgrade: ExileAbstractAction { title = "Upgrade"; condition = "true"; action = "_this call ExileClient_gui_upgradeterritoryDialog_request"; }; }; }; Edited November 12, 2018 by Fleischer110 Share this post Link to post Share on other sites
Beowulfv 305 Report post Posted November 12, 2018 (edited) Server RPT And place it in pastebin not in the forum section. Share the pastebin link. https://pastebin.com/ Edited November 12, 2018 by Beowulfv Share this post Link to post Share on other sites
Fleischer110 3 Report post Posted November 12, 2018 I found the following error ... what does that mean? Warning Message: File mpaltis\__cur_mp.altis\config.cpp, line 4115: /CfgInteractionMenus/: '易encountered instead of '{' 4:17:40 Warning Message: Config : some input after EndOfFile. 4:17:40 Class ExileAbstractAction destroyed with lock count 91 4:17:40 Mission Exile.altis: Missing 'description.ext::Header' Share this post Link to post Share on other sites
[x] cit 23 Report post Posted November 12, 2018 pay protection, upgrade, etc is used as default in office trader Share this post Link to post Share on other sites
Fleischer110 3 Report post Posted November 12, 2018 It can also be installed on the flag, I have even saw other servers. Share this post Link to post Share on other sites
Z80CPU 527 Report post Posted November 12, 2018 (edited) Hello @Fleischer110, This error indicates a 'syntax error'. You have too many OR not enough 'things'. I suggest you run your file thru this: This will at least point you to WHAT the problem area is! Edited November 12, 2018 by Z80CPU Share this post Link to post Share on other sites
Fleischer110 3 Report post Posted November 13, 2018 had a little something wrong ... it works fine now, here is the text .. who would like to have it class Flag { targetType = 2; target = "Exile_Construction_Flag_Static"; class Actions { class PayProtection: ExileAbstractAction { title = "Pay Protection"; condition = "true"; action = "_this call ExileClient_gui_payTerritoryProtectionMoneyDialog_show"; }; class Upgrade: ExileAbstractAction { title = "Upgrade"; condition = "true"; action = "_this call ExileClient_gui_upgradeTerritoryDialog_show"; }; }; }; Share this post Link to post Share on other sites