Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 05/25/2018 in all areas

  1. 4 points
    User ranks Hello! Our forum has user ranks system. The user's rank reflects the amount of content he created on the forum. The more messages the user leaves and creates new topics, the higher his rank. Since our game is about pirates, then the ranks will be respectively pirated. For each new rank the user receives a Squid. The squid was chosen as the game symbol. The number of messages required to receive the new rank was chosen based on the current average number of messages left by users on 05.25.2018. That is, in such a way that all users do not immediately receive the highest rank, but they also do not have the lowerest rank. There are 5 ranks in total: Cabin Boy - 0+ messages; Pirate - 30+ messages; Boatswain - 125+ messages; First Mate - 200+ messages; Sea Captain - 300+ messages. If you have any ideas and suggestions about the ranks of users, then write about them in this thread!
  2. 1 point
    Hi all. I am posting this here as it took me some time to figure it out and maybe someone else wants to use it as well. - What we want to achieve: Mission shows a "[Completed]" flag in the quest log when we have collected all items - killed all mobs - In directory `/resource/script/MisSdk/` 1. File: ScriptSdk.lua: We will start a variable called `MissionSid = {}` in global variables definition, line ~=16 (below `Mission` variable): and in function `DefineMission` we will cal the MissionSid with a misid index: 1. File: MissionSdk.lua: Here we will use the function `RefreshCompleteFlag` (used normally by random class quests, "A hunter's life" etc). First in the `RefreshCompleteFlag` function itself: The function defines a local called: `local mission`. We will start this local with the value of `Mission[sid]`, so replace `local mission` with `local mission = Mission[sid]`: Then we need to use the `RefreshCompleteFlag` function in the `AddNextFlag` function: ( we added the line `RefreshCompleteFlag(character,MissionSid[id])` ): I hope this can help someone. Sorry for my English and if there are mistakes/bad scripting/better way, please let me know
  3. 1 point
    GM Command editor With this program you can view the modified names of GM commands in GameServer.exe and edit them if necessary. Supported versions of GameServer.exe are 1.36, 1.38 and 2.4. How to use: 1) Run the program; 2) Enter full path to GameServer.exe or it's name if the program is located in the same directory, for example: D:\ServerFiles\GameServer.exe 3) The program will show a list of changed commands, if any; 4) You can change their names to the standard if necessary; 5) You can change names of GM commands. Enter to the console: <old name> <new name> 6) To exit enter 'E'. Download (54 KB): GM Command 1.2.exe
  4. 1 point
    i got this trouble few days ago you must use absolutly clean client for map-making and copy files to your game-client after done your job even in default Argent(but with camera tweak) i have this problem before install clean pko
  5. 1 point
    so even default tp-npc didnt work? if you want to learn how to make any npc - found npc's with same functions(sale,tp,trade,appareals) and copy it with your conditions ***** Open resource/script/MisSdk/MissionSdk.lua ctrl+f "SetProfession then" and after "end" (and befotre next "elseif") paste this elseif actions[i].func == GoTo then PRINT( "ActionsProc:GoTo, p1 = , p2 = , p3 = ", actions[i].p1, actions[i].p2, actions[i].p3 ) local ret = GoTo( character, actions[i].p1, actions[i].p2, actions[i].p3 ) PRINT( "Goto: ret = ", ret ) if ret ~= LUA_TRUE then PRINT( "ActionsProc:GoTo Не удалось!" ) SystemNotice( character, "ActionsProc:GoTo Не удалось!" ) return LUA_FALSE end I hope it help you
  6. 1 point
    Hi, haven't tested if registration works with this edits, but to avoid the deprecated mssql_connect() you can edit this line in `index.php`: Edited: changed all calls to mssql_* functions, this should work for you: For me the captcha image did not work and did not have time to check it, so I just commented out line 41: "else if($_SESSION['captcha_keystring']" This only makes work the registration, to have rankings work you change the mssql_ functions with the respective sqlsrv_ functions. Hope this can help
  • Newsletter

    Want to keep up to date with all our latest news and information?
    Sign Up
×
×
  • Create New...