Jump to content
Sign in to follow this  
FelixK44

Scipting problem (Ghetto Shop script)

Recommended Posts

Hi, I'm having trouble trying to get this to work. My init.sqf only has one line of code exec "init-shop.sqf" for some reason nothing happens when I execute guntest.sqf

init-shop.sqf

_unit123 setVariable ["cash", 1];

guntest.sqf


//this addAction[("<t color=""#660066"">" + ("Buy AK47") +"</t>"),"shop\guntest.sqf"]; <--- placed in object init
if (cash < 250) then
{
   Hint "You do not have enough money";
} 
else 
{
    _curcash = _unit123 getVariable "cash";
   _unit123 setVariable ["cash",_curcash - 250];
   gunlocker addWeaponCargo ["AK_47_M", 1];
   gunlocker addMagazineCargo ["30Rnd_762x39_AK47", 5];
   Hint "Check your gunlocker";
};

Edited by FelixK44

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×