Rawshark 11 Posted October 2, 2016 So I am very new to scripting and am trying to make a basic greeting for an Arma 3 MP server. The hint.sqf file looks like this:_theGreeting = "Welcome";Hint_theGreeting;Very basic but there is a problem when I test it in the Eden editor - I get the following error |#|Hint_theGreeting;'Error undefined variable in expression: hint_thegreetingI have no idea what I am missing here but any help would be amazing. Thanks! Share this post Link to post Share on other sites
TeTeT 1523 Posted October 2, 2016 You need to add a whitespace between the command and argument: hint _theGreeting; 1 Share this post Link to post Share on other sites
Rawshark 11 Posted October 2, 2016 Still no luck! I'm using ArmA edit and I have it written like: but I still get the same error message Share this post Link to post Share on other sites
Grumpy Old Man 3546 Posted October 2, 2016 First of all, try and get poseidon. It's so amazing, I have to contain myself. Like TeTeT wrote, hint "something" shouldn't return an error. Type it out manually and see if the error persists. Cheers Share this post Link to post Share on other sites
Neviothr 102 Posted October 2, 2016 hint format ["%1", _theGreeting]; Share this post Link to post Share on other sites
killzone_kid 1331 Posted October 2, 2016 but I still get the same error message This means you are still calling the old file from cache or otherwise. The new code is correct and should work. 1 Share this post Link to post Share on other sites