Jump to content

Frost Diver

Members
  • Posts

    189
  • Joined

  • Last visited

Everything posted by Frost Diver

  1. Error on mapserver upon starting and ending of campfire. Using latest rathena version.
  2. Nvm, i fixed it. For those who wants to change path of the lub files while diffing the client, make sure dont include .lub extensions on these 2 files ( OngoingQuestInfoList and RecommendedQuestInfoList ) as the default path also has no extensions in it.
  3. Hi, I'm using updated chris translation. But i got this error. How to fix this? What's missing at line 40 in my RecommendedQuestInfoList? Thanks. RecommendedQuestInfoList_True_EN.lub
  4. Hi, Tried the script, i was able to spawn the clone, but cannot remove it by using @marketkill. same goes to when i relog, the clone is still there. Running on updated rathena. Regards.
  5. Hello good day! Can someone point me on to put some buffs like ghostring, taogunka, holy scrolls will not disappear when got dispelled by Professor? Just like the Alchemist 'Full Chemical Protection' skill. Thanks!
  6. Hi, may i know how to use/run this script?
  7. up! still looking for help Great! Thabks alot man ?
  8. Hello! I need a little help. How can i make this script to have an input option. Example, i got 30 vote points. And when i talk to npc, i want to exchange only 15 vote points to vote token. So i need to input the amount of 15 to be exchange. The thing is, this script can only allow me to exchange 1 by 1 and it doesn't have an input option. Here's the script. Thank you guys ^^ votenpc.txt
  9. this is distance from npc right? how about distance from other player's shop/vendor?
  10. Hello, How can i restrict players to open vending in same cell with other vendors so that the shop is not overlapping. Thanks
  11. Can you share the fixed and working correctly script sir? bump! still need help for this. anyone?
  12. can you share, my friend? bump thanks alot! im much appreciated. god bless you buddy hello, just tried the script. but i think it got bug where it's always jumped to the same vendor. when i type the command using the item ID or any item ID that are not sell by any vendors, it's still jumped me to the same vendor
  13. Hello guys! I would like to ask, does anyone here can fix/update this script or have a working script for this? I've tried to install it but it's not working on latest git. Thanks in advance
  14. Oh sorry. What i mean is a 10 secs countdown once there are 2 players in the arena. Countdown like localbroadcast in a map before pvp turn on. And also, there is a time limit once duel is started for 5 minutes only
  15. Hello! How can i add a timer like 10 seconds before the duel start in the arena? So that players can get ready before pvp turn on in arena. And also, once 2 players are inside the arena, there are limit for 5 minutes only. If exceed the time limit, both players will be kicked out of the arena. Here's the script: duel.txt
  16. yes currently i adviced my players to enable /ns
  17. Hey guys, I'm looking for a working Cell PVP. Does anyone have it? Managed to apply this and it worked but it's Cell PK where u have to press shift to hit. Not Cell PVP. Thanks in advance ^^
  18. is it possible to combine this 2 functions into 1? i think i found the error since im using @afk diff currently. when i tried to remove 1 of the functions, recompiling is working without any errors void pc_update_last_action(struct map_session_data *sd) { nullpo_retv(sd); t_tick tick = gettick(); sd->idletime = last_tick; if (sd->state.afk == 1) { sd->state.afk = 0; clif_changelook(&sd->bl, LOOK_HEAD_TOP, sd->status.head_top); clif_displaymessage(sd->fd, "Happy to see you again !"); } } void pc_update_last_action(struct map_session_data *sd) { struct battleground_data *bgd; int64 tick = gettick(); sd->idletime = last_tick; if (sd->bg_id && sd->state.bg_afk && (bgd = bg_team_search(sd->bg_id)) != NULL && bgd->g) { // Battleground AFK announce char output[128]; sprintf(output, "%s : %s is no longer away...", bgd->g->name, sd->status.name); clif_bg_message(bgd, bgd->bg_id, bgd->g->name, output, strlen(output) + 1); sd->state.bg_afk = 0; } return 1; }
  19. Yea i noticed that since the author is missing and no response. I've tried your diff but same error happens when recompile. Can u help me brynner?
×
×
  • Create New...