Jump to content

Rusty

Member
  • Posts

    27
  • Joined

  • Last visited

Posts posted by Rusty

  1. Hi there,

    I'm in need of help.

     

    EMS 0.3 is running DZMS 1.0RC   It works great,  has the ikea missions, but it is missing some features that I really need which are located in DZMS 1.1 Final

     

    https://codeload.github.com/SMVampire/DZMS-DayZMissionSystem/zip/master

     

    I tried using the missions from EMS 0.3 and putting them into DZMS 1.1 Final but the missions never came up.  

    Is there a way that you can update?   I really need 1.1 Final as it has the RPG for AI feature !

     

    Any help is appreciated.

    Thanks!

  2. Hi there,

    Map : "Chenarus"

     

    I had this working with the default items - and with the trader to "Profiteer4". ( Klen Vehicle Dealer ) as you can see in the paste.

     

    So I added more items.  However now - I cannot get the trader menu to appear.

    I added in some server echoes to see where it was getting stuck

     

    http://pastebin.com/02CXWr00

     

    You will notice that I added a comma at the end of line 30.

    With this - the "Echo 8" message shows up on the server.

    Without the comma - I only get up to "Echo 7".

     

    I am not certain where the fault lies or why I cannot get it to load correctly.   Would too many items be causing this?  I do not think so, but need a better coder to review.  

    Any help is appreciated.

     

    For those interested in how I got the items listed as such; I used this customized query. 

     

    select concat(SPLIT_STR(item,',',1), ',', cast(
    case SPLIT_STR(sell,',',2)
        when '\"ItemGoldBar10oz\"' then 
        (replace(SPLIT_STR(sell,',',1),'[','')*1000)
        when '\"ItemGoldBar\"' then
        (replace(SPLIT_STR(sell,',',1),'[','')*100)
        when '\"ItemSilverBar10oz\"' then
        (replace(SPLIT_STR(sell,',',1),'[','')*10)
        when '\"ItemSilverBar\"' then
        (replace(SPLIT_STR(sell,',',1),'[',''))
        end  as CHAR) ,'],') as list
        FROM traders_data where afile in ('trade_weapons','trade_items')
        group by item
    order by list
     
     
×
×
  • Create New...