Dredd

Member
  • Content count

    25
  • Donations

    0.00 EUR 
  • Joined

  • Last visited

Community Reputation

7 Neutral

About Dredd

  • Rank
    Bambi

Recent Profile Visitors

857 profile views
  1. Dredd

    How do I fix the .pbo key problem?

    To be honest, if: "I have no idea how to work a computer, I'm a great gamer but that's it." you probably shouldn't be trying to host a server. Have you edited these pbo's? As in, extracted them - then repacked them. Or have you not touched them since downloading? If not, I would recommend you reading this thread: /topic/75-server-installationupgrade-guide-30-0920-tomato/ and following it step by step.
  2. Have you had this in the past? Can you guys have a quick look at the following BattlEye filters (/ServerRoot/battleye): remoteexec.txtwaypointcondition.txtwaypointstatement.txtMake sure they exist. If they do, post the content in a spoiler. I am tipping there is something wrong with those filters.
  3. Dredd

    Items cost pop tabs and respect

    Hey I had a quick play around, managed to edit the mission config.cpp with a 'respect' data member no problems. Implemented some changes to ExileServer_system_trading_network_purchaseItemRequest.sqf, and a few others. As a bare bones test, it makes the appropriate changes to the database (removing both money and respect). So it works and is quite possible. However, it really is not working as it should. I have made so many errors and this is my first 'proper' look at the Exile code. I need to sift through it and work out what I am doing wrong. Finally, MrWhite mentioned in a topic about the currency system (/topic/3510-limit-pop-tabs-to-3000-and-add-commodities/) that there would be changes to the currency system in the near future. So I don't know how much time I will burn on this because, obviously there are going to be some new ideas coming forth and I would tip that they may implement something similar to what you are suggesting. I will have another look tomorrow, but I wouldn't hold your breath on anything from me too soon.
  4. Dredd

    Items cost pop tabs and respect

    Well, I guess I could give it a crack. I will have a go in 4 or so hours when I get a chance. Probably good to get some practical experience. I will report back with my findings unless someone more competent puts their hand up.
  5. Dredd

    Battleye and BEC problem

    Yeah you are just briefly losing connection with the BE master server. Happens occasionally, nothing serious.
  6. Dredd

    Items cost pop tabs and respect

    What a strange thing to say lol. Anyway, I think he is correct, I am no Arma programmer but you would need to add a 'respect' data member to config.cpp: class U_B_GhillieSuit { quality = 2; price = 100; }; //Add respect: class U_B_GhillieSuit { quality = 2; price = 100; respect = 5; }; Then probably edit quite a few scripts, first that comes to mind is "ExileServer_system_trading_network_purchaseItemRequest.sqf", add something like: _salesRespect = getNumber (missionConfigFile >> "CfgExileArsenal" >> _itemClassName >> "respect"); if (_salesRespect <= 0) then { throw 6; }; _playerRespect = _playerObject getVariable ["ExileScore", 0]; if (_playerRespect < _salesRespect) then { throw 7; }; _playerRespect = _playerRespect - _salesRespect; _playerObject setVariable ["ExileScore", _playerRespect] I dunno, as I say I'm not massively familiar with Arma scripting, but I'd imagine its something like that. Then you would have to edit quite a few other scripts to display the price etc etc.
  7. Dredd

    @MAS + VEMF - Wtf?

    Post it and then edit it out after 5 minutes if you're worried about leaking it. I will do my best to help.
  8. Dredd

    @MAS + VEMF - Wtf?

    Yeah mate I thought that might've been the case. Well I have looked through the whole thing many times now It is all formatted correctly and not missing anything obvious to me. So double check everything is being uploaded and packed correctly, make sure your changes are been applied to the right file too. Otherwise, sorry mate this requires a brighter mind than mine.
  9. Dredd

    @MAS + VEMF - Wtf?

    Haha I don't blame you, it really does fry your brain. I skimmed through, missing a { on line 41. I will keep looking and edit this if I find anything else.
  10. Dredd

    Server not starting

    Hi, could you let us know what the issue was and how you fixed it? I have seen quite a few people present the error: Error when creating WIC imaging factory: Error: 0x80040154Maybe their is a common link. Also, glad to hear you got it working!
  11. Dredd

    battleye script restriction #24

    Hi, could you please post the relevant scripts.log in spoiler tags. My first guess would be that you haven't implemented or incorrectly implemented your Battleye filters. Have you done this?
  12. Dredd

    respawn bug/loop

    Hi, is this your server or somebody else's? Usually you can fix this issue by deleting your characters SQL entry.
  13. Dredd

    Server dont start

    Are you running the server yourself or are you using a third party hosting like Vilayer or GTX?
  14. Dredd

    Server not starting

    Hi, it's hard to tell what the issue is without the relevant logs. Could you please post the .rpt log in spoiler tags.
  15. Dredd

    Server dont start

    No, SQL doesn't understand what an .ini file is. You need to run the exile.sql through your SQL database in order to create the correct tables. I would suggest taking a look here: /topic/75-server-installationupgrade-guide-30-0920-tomato/ Start your server install from scratch and follow that step by step guide and it will hopefully set you straight.