Format of the guid changed #10


  • New
  • Defect
Open
Assigned to _ForgeUser1186005
  • _ForgeUser1424561 created this issue Nov 16, 2014

    The format of the guid changed, so some changes are needed.
    Change the lines 650 and 690
    local vNpcid = tonumber(vGuid:sub(-12, -9), 16)
    to
    local p1, p2, p3, p4, p5, p6, p7 = strsplit("-", vGuid)
    local vNpcid = tonumber(p6)

  • _ForgeUser1424561 added the tags New Defect Nov 16, 2014

To post a comment, please login or register a new account.