christofereduardo Posted March 7, 2019 Group: Members Topic Count: 13 Topics Per Day: 0.00 Content Count: 36 Reputation: 2 Joined: 06/06/13 Last Seen: May 4, 2024 Share Posted March 7, 2019 Hello there, here in the forum already Could you make this work by chance you have some tutorial what you need to do. Here below what I already have by chance has something else? MaxLevelTable = { BaseLevel = 99, BaseLevel3rd = 175, BaseLevelExtend2 = 160, BaseLevelUpperJob = 175, BaseLevelHomun = 175, BaseLevelDoram = 175, JobLevelNovice = 10, JobLevelSuperNovice = 99, JobLevelBase = 50, JobLevel2nd = 70, JobLevel3rd = 60, JobLevelExtend2 = 50, JobLevelUpperJob = 60, JobLevelDoram = 50 } MakeableRace = {Doram = true} Url = { TwitterUrl = "http://112.175.128.140:3000/" } AccountLinkedUserDataUrl = { Save = "http://112.175.128.140:3000/userconfig/save", Load = "http://112.175.128.140:3000/userconfig/load" } AdventurerAgencyDataUrl = { Add = "http://112.175.128.140:3000/party/add", Delete = "http://112.175.128.140:3000/party/del", PrevPage = "http://112.175.128.140:3000/party/PrevPage", NextPage = "http://112.175.128.140:3000/party/NextPage" } TwitterDataUrl = { Auth = "http://112.175.128.140:3000/twitter/user-auth", Upload = "http://112.175.128.140:3000/twitter/upload" } LEVELAURA = {} LEVELAURA.EF_NONE = -1 LEVELAURA.EF_LEVEL99 = 200 LEVELAURA.EF_LEVEL99_ORB1 = 976 LEVELAURA.EF_LEVEL99_ORB2 = 977 LEVELAURA.EF_LEVEL150 = 978 LEVELAURA.EF_LEVEL150_SUB = 979 LEVELAURA.EF_LEVEL160 = 1022 LEVELAURA.EF_LEVEL160_SUB = 1023 Level99AuraTable = { Default99LvAura = LEVELAURA.EF_LEVEL99, Default99LvAura_sub = LEVELAURA.EF_LEVEL99_ORB1, Baby99LvAura = LEVELAURA.EF_LEVEL99, Baby99LvAura_sub = LEVELAURA.EF_LEVEL99_ORB2, SecondHigh99LvAura = 0, SecondHigh99LvAura_sub = 0, Homun99LvAura = 0, Homun99LvAura_sub = 0, Boss99LvAura_sub = LEVELAURA.EF_LEVEL99_ORB1 } MaxLevelAuraTable = { Default150LvAura = LEVELAURA.EF_LEVEL150, Default150LvAura_sub = LEVELAURA.EF_LEVEL150_SUB, Default160LvAura = LEVELAURA.EF_LEVEL160, Default160LvAura_sub = LEVELAURA.EF_LEVEL160_SUB, HomunMaxLvAura = LEVELAURA.EF_LEVEL160, HomunMaxLvAura_sub = LEVELAURA.EF_LEVEL160_SUB } function GetTableIntValueForC(tableName, keyName) local t = _G[tableName] if nil == t then return -1 end local intValue = t[keyName] if nil == intValue then return -1 else return intValue end end function GetTableStringValueForC(tableName, keyName) local t = _G[tableName] if nil == t then return "" end local stringValue = t[keyName] if nil == stringValue then return "" else return stringValue end end function GetTableBoolValueForC(tableName, keyName) local t = _G[tableName] if nil == t then return false end local boolValue = t[keyName] if nil == boolValue then return false else return boolValue end end Quote Link to comment Share on other sites More sharing options...
0 Akkarin Posted March 7, 2019 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: Monday at 02:17 PM Share Posted March 7, 2019 I assume you've created files from the Twitter SDK on your server to make this work? Quote Link to comment Share on other sites More sharing options...
Question
christofereduardo
Hello there, here in the forum already Could you make this work by chance you have some tutorial what you need to do. Here below what I already have by chance has something else?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.