Jump to content

1g0rS1lv4

Community
  • Content Count

    141
  • Joined

  • Last visited

  • Days Won

    15

Everything posted by 1g0rS1lv4

  1. the files have a bug, with the Friends and chat system, GroupServer and Client Crash when trying to start a chat.
  2. here for me I just needed to combine all the .bins
  3. function file_exists(name) local f=io.open(name,"r") if f~=nil then io.close(f) return true else return false end end
  4. https://mega.nz/folder/OUMUgTYb#jtCsqh7halK_O9uzWyaG0g/folder/yRc0lQ5Y
  5. These public files you are using were modified on the gameserver side in OfflineStall.
  6. if it's for testing or even a Beta, you can use Google Cloud - Google Cloud Platform, they give you 300$ in credits, you can create a VPS any way you want. after creating an instance, you will only need to open the port that your game.exe uses to connect to the GateServer, by default TOP uses 1973.
  7. MisResultCondition(HasFlag, 37 , 10 ) we can start here, you put the Mob ID instead of the Mission ID, and the flag would also be wrong. to calculate the value of HasFlag, you must take the amount of times you intend to kill this mob plus the value of the Flag and remove 1. MisResultCondition(HasFlag, 2041 , 59 ) 2041 = MissionID 59 = Flag ( 50 ( Need Kill ) + 10 ( Flag ) - 1 ) sorry for the bad english.
  8. I think this can be useful too, you will be able to conventer colors in HEX to Decimal. Unsigned Integer
  9. function GetPowerColor(Power) if (Power >= 1 and Power <= 50) then -- Green Colour = 4278255360 elseif (Power >= 51 and Power <= 100) then -- Blue Colour = 4278215413 elseif (Power >= 101) then -- Red Colour = 4294901760 end return Colour end
  10. check VPS firewall, add GateServer to firewall.
  11. address for game.exe 13x_0. const DWORD OldScaleStruct_Addr = 0x004D7959; const DWORD AddCharacter_Addr = 0x004D7580;
  12. https://drive.google.com/file/d/1dm86k5eMjJg7Abg2_mP6QV2y9xpxVfjz/view?usp=sharing
  13. well, it contains many comments from v3ct0r and White ADM from In-PKO selling these files as if it were his.
  14. As the title already says ProxyServer Source Code. Credits I believe it is from @V3ct0r, this source is sold by ADMS from In-PKO, use it as you wish. Can use Vs2019. https://github.com/1g0rs1lv4/ProxyServer
  15. @dragontechi well, i have this source of this circle mod. you can use VS2019 to compile, or you can use base to make your own dll from v3ct0r mods. Link Fixed. https://drive.google.com/file/d/1dm86k5eMjJg7Abg2_mP6QV2y9xpxVfjz/view?usp=sharing
  16. check your birth_conf.lua and mapinfo, maybe you can change the main city there.
  17. @flamyman1412https://mega.nz/file/kktQSazZ#AqDvUSuHPUxmQErDI3rbB_fv56rYC4APaL47M3haBso
  18. make sure the code doesn't already exist in your files.
  19. function CheckTime ( Player ) local Now_Week = os.date("%w") local Now_Hour = os.date("%H") Now_Week = tonumber(Now_Week) Now_Hour = tonumber(Now_Hour) if Now_Week == 6 or Now_Week == 0 then if Now_Hour >= 9 and Now_Hour < 12 then return LUA_TRUE elseif Now_Hour >= 21 then return LUA_TRUE end end end you can use the CheckTime condition MissionSdk.lua elseif conditions[i].func ==CheckTime then PRINT( "ConditionsTest: CheckTime, p1 =, p2 =", conditions[i].p1) local ret = CheckTime( character, conditions[i].p1 ) if ret ~= LUA_TRUE then PRINT( "ConditionsTest:CheckTime = false" ) return LUA_FALSE end way of use. MisBeginCondition(CheckTime)
  20. I believe it is in AreaSet https://gyazo.com/6df1ee0bdce9a8ed8c98a2ddf4e30e45 https://gyazo.com/a9e8bdf2cb0bc2cd4c5ca0a862f14c6e
  21. you need to configure the Facebook API. config/inc.config.php https://gyazo.com/07f958cecf4b1d6b8df33d961ce356a7
×
×
  • Create New...