Jump to content

Masuka00

Community
  • Content Count

    88
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Masuka00

  1. I need help with this vasil extension from this post I am having problems with the host, I am using sql 2014 on windows server 2008 r2, It does not connect no matter how much I enter the name of the pc, ip or .\\MSSQLSERVER, I have already tried several combinations and nothing, could someone please tell me what I am wrong about? SQLConnector.sql = { host = "127.0.0.1\\SQLEXPRESS", user = "sa", pass = "Y87dc#$98", db = "TradeDB" }; It's funny, because the guide below works perfectly for me. I would appreciate your help in advance.
  2. I'm looking for grandiose armor for all the characters, if someone could share it with me I would greatly appreciate it
  3. In case you still haven't known how to get the script up and running, here I will leave you the way. In MissionSdk.lua find this line elseif conditions[i].func ==CheckTime then ----Find This Line 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 ----When you see the end, paste the new code Must look like this: elseif conditions[i].func ==CheckTime then ----Find This Line 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 ----When you see the end, paste the new code elseif conditions[i].func == CheckDayLog then PRINT( "ConditionsTest:CheckDayLog, p1 = ", conditions[i].p1 ) local ret = CheckDayLog( character , conditions[i].p1 ) if ret ~= LUA_TRUE then PRINT( "ConditionsTest:CheckDayLog = false" ) return LUA_FALSE end The same in the following code elseif actions[i].func == AddExp_6 then ------Find This Line PRINT( "ActionProc: AddExp_6, p1 = ", actions[i].p1) local ret = AddExp_6( character,npc, actions[i].p1) if ret ~= LUA_TRUE then PRINT( "ActionProc:AddExp_6 = false" ) return LUA_FALSE end ----When you see the end, paste the new code Must Look Like This elseif actions[i].func == AddExp_6 then ------Find This Line PRINT( "ActionProc: AddExp_6, p1 = ", actions[i].p1) local ret = AddExp_6( character,npc, actions[i].p1) if ret ~= LUA_TRUE then PRINT( "ActionProc:AddExp_6 = false" ) return LUA_FALSE end ----When you see the end, paste the new code elseif actions[i].func == AddDayLog then PRINT( "ActionsProc:AddDayLog, p1 = ", actions[i].p1 ) local ret = AddDayLog( character , actions[i].p1 ) if ret ~= LUA_TRUE then PRINT( "ActionsProc:AddDayLog failed!" ) return LUA_FALSE end After having placed the script correctly we go to MissionScript08.lua DefineMission(6888, "(Daily Quest) Kal Runestone", 1884) MisBeginTalk( "<t>Kal Runestone is a Item that can get with Novice, Standard and Expert Chests in Pk Areas And can be used to exchange some items.") MisBeginCondition(CheckDayLog,1884) -- here add checkday MisBeginCondition(NoMission,1884) MisBeginAction(AddMission, 1884) MisBeginAction(AddTrigger, 18841, TE_GETITEM , 3457 , 1 ) MisCancelAction(ClearMission, 1884) MisNeed(MIS_NEED_DESP, "Colect 1x Kal Runestone in Demonic World, Chaos Argent and Arena Island.") MisNeed(MIS_NEED_ITEM, 3457, 1, 10, 1) MisPrize(MIS_PRIZE_ITEM, 227, 99, 4) MisPrizeSelAll() MisHelpTalk("<t>You can get Kal Runestone With Novice, Standard and Expert Chests in Pk Areas.") MisResultTalk("<t>Thanks! You got that.") MisResultCondition(HasMission, 1884) MisResultCondition(HasItem, 3457, 1) MisResultAction(TakeItem, 3457, 1) MisResultAction(ClearMission, 1884) MisResultAction(AddDayLog,1884) -- here add addDaylog Then we go to NPCScript08.lua and paste function Script_Npc01 () ---Remember this has to go on garnernpc AddNpcMission (6888) ---This is what activates the script end and then in garfnernpc.txt we place a new NPC XXX Quest Board 1 7 15 223200,279300 223200,279300 180 Argent City 3 0 Script_Npc01 0 That's the way it worked for me, I don't remember who came with the LuaSQL.dll integrated into GameServer.exe, but try with or without the LuaSQL.dll anyway. I hope that works for someone who has the doubt, it worked for me the first time and by the way, excuse my English or my lack of spelling, I'm using Google Translate.
  4. Hi @mkhzaleh i did all the steps and dosent work for this game.exe, Any other solution?
  5. Those web files have worked for me with xampp 1.7.1 Link: Xampp-1.7.1
  6. Hi!! Thanks for the response but i already try those files and its the pko with little hero version i wann a try the pko v1.0.0 clean
  7. Greetings everyone! It's been a while since I've posted anything in this forum, but this time I come with a simple request and I'm looking for some web files with the name pkoSite v1.0.0 created by Snow Crash, which It is completely the original without any modification that does not contain the mall store, since the clean version is not found in the mega files. I would greatly appreciate any help and sorry for my bad english
  8. Greetings, I would like to know how to put an NPC that gives an initial greeting or starts a conversation depending on the gender of the character or the type. If someone could give me a hand, I would really appreciate it.
  9. Greetings to the community, it's been a long time since I posted here, I just want you to clarify a small doubt, someone gave me an old model pc, a dell optiplex 755 with intel core duo and 4gb of ram but it is completely new of box, and I can't think of anything else than to use it as a simple test server to play with friends and family. I did my first test start the gameserver with the following maps all the maps consume 3.45 gb of ram, now my question is what maps would be really necessary to open to leave the server 24/7. Thank you for your time and greetings to all
  10. Hello everyone, Years have passed since this great game was released to the public, but over time I forget some details. I would like to know if someone could tell me what items are difficult to get from a mob, not gems, not weapons, not armor and not runes.
  11. Masuka00

    Quest Board NPC

    A couple of years ago I had the idea of using an object as an npc for daily quests, I paid for it and never used it but I share it in case someone is interested Add in characterinfo after line 5 on server and client (compile) 7 CHA7 CHA7 4 2 7 0 1 1 1 0 0 0 0 0 0 0 0 0 1 7 100 182 -1 -1 0 0 0 7,8,9,10 0.797 1.392 4.709 40 1,5 0 399 398 0 0 0 1 1 0 0 25,28,29,34,35,36,37 100 0 0 0 0 0 0 0 1 1 1000 0 0 1 0 1 40 0 18 0 4 5 0 3 2 1 1 0 1 1 1442 0 1500 480 0 5 5 5 5 5 5 20 0 0 0 0 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1,1,1 Add in characteraction.tx 7 1 0 99 before 10 in line 1944 (I think), do not alter the order of how the numbers are displayed or the client will mark an error. add in garnernpc from server XX Quest Board 1 7 15 223200,279300 223200,279300 180 Argent City 3 0 Script_Npc01 0 and place the files in their respective client folders, Inside the file are the instructions in case there is an error Download Here is useful for, or any other use
  12. Here is a Clean One i made it a few years ago
  13. In case anyone is interested in the old style Download Here and change te line -- Close button -- Close button btnClose = UI_CreateCompent( frmReward, BUTTON_TYPE, "btnClose", 14, 14, 342, 4 ) UI_LoadButtonImage( btnClose, "texture/mods/pkodev.mod.reward/main.png", 14, 14, 271, 174, TRUE ) UI_SetButtonModalResult( btnClose, BUTTON_CLOSE )
  14. Link Down please fix
  15. Hi! I would like to know if someone could explain to me how to increase the map limit in mapinfo, I know that the mapinfo is limited to forty-something, and the only information I found is the Russian section. .::INFO:. To Hex game.exe and look address 0x00016873 then find 0x32 and replace it with 0x50 this will remove the limit of 49, but 80 maps. The problem can't find the address 0x00016873 and there is no info on what version of game.exe is, since I am using version 1.36, if someone could help me i would appreciate a lot.
  16. Wrong section you need to go Paid services & Requests
  17. What kind of item is it? go to server files resouce/iteminfo.txt to find the item version and copy item lime of a same type of item and change it name, icon, stats etc, that should work.
  18. Hi, I don't think anyone is interested in being a GM and if you are looking for some kind of script, you can find a great variety in the forum or if you have something in mind comment it.
  19. here you go Find : 30,58 38,70 0001 Short Sword w0001 10100001 01010001 02010001 0 0 0 00 1 10 0 0 7 1 1 1 1 1 1 1 1015 2,1 10 1,8,9,10 0 0 9,6 -1 0 0,0 0,0 0,0 0,0 0,0 0,0 50,50 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,10 0,10 0,10 0,10 0,10 0,0 0,0 0,0 30,58 38,70 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0 1 0,1000 10000,10000 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Sword that is slightly shorter You can search for each weapon damage by guiding you by the game item. This is my way of reviewing the items, like stats, effects etc.
  20. Here I leave for those who want a version with the color of the original client Simple One https://www.mediafire.com/file/q2wiw91c41yiigd/gm_panel.tga/file
×
×
  • Create New...