Jump to content

SAYREX

Member
  • Posts

    10
  • Joined

  • Last visited

Posts posted by SAYREX

  1. On 27.07.2016 at 10:46 AM, Sp4rkY said:

    nope, thats not possible at this point, it would end up with blowing up some vehicles at the parking place.

    Hi! After the installation stopped working paintshop....  The problem starts after adding a file description.ext  class:

    class CfgNotifications {
                 #include "SPKcode\ESVP\notifications.h"

    };

    How can I fix it?

     

  2. In file player_sellitem.sqf:

    Over:

    [_unit,_item] call BIS_fnc_invRemove;

    Paste:

    _item =  configFile >> "CfgMagazines" >> _item;
    

    Should look like:

    _item =  configFile >> "CfgMagazines" >> _item;
    
    [_unit,_item] call BIS_fnc_invRemove; 
    

    In you bank system Zupa in file trade_items.sqf (2 lines):

    Over:

    _removed = ([player,_name,1] call BIS_fnc_invRemove);

    Paste:

    _name =  configFile >> "CfgMagazines" >> _name;
    

    Should look like:

    _name =  configFile >> "CfgMagazines" >> _name;
    
    _removed = ([player,_name,1] call BIS_fnc_invRemove);
    

    Thank you!

    The error in the RPT(installed Single Corrency 3.0)

    22:14:13 Error in expression <UID =     getPlayerUID _player;
    
    if (_item == "") then {
    
    diag_log "Auction House: >
    22:14:13   Error position: <== "") then {
    
    diag_log "Auction House: >
    22:14:13   Error Generic error in expression
    22:14:13 File z\addons\dayz_server\compile\store\server_sellitem.sqf, line 11
×
×
  • Create New...