Jump to content

TemplarOfTheMist

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by TemplarOfTheMist

  1. Hello, I am curious if I delete logs let's say every 1 or 2 months, that it will have a negative impact on server performance/cause crashes etc. Can anyone tell me the possibilities of those things happening? Because logs are currently what's eating up the the server's storage. Maybe you can share best practices as well (when to delete, how etc) Thanks!
  2. I've attached these screenshots to compare: Below is the Admin level 99 This one is a normal account
  3. Hello guys, I have an itemshop script that sells items in Poring Coins. It seems the GM level 99 can buy (Points appear on the UI) whereas a normal account (level 0) gets an error that there is no enough Kafra Points. Here is the script prontera,152,184,5 itemshop [Poring] Shop 436,7539,5137:100 I am using the latest rAthena version. Any help would be great. Thanks!
  4. Apologies for misunderstanding your reply. Is there a way to debug it other that from Windows? I currently do not have a test server within my resources. My server is currently up on a Linux based VPS though.
  5. This is the block of code I currently have at pc.c: int pc_equippoint_sub(struct map_session_data *sd,struct item_data* id){ int ep = 0; nullpo_ret(sd); nullpo_ret(id); if (!itemdb_isequip2(id)) return 0; //Not equippable by players. ep = id->equip; if(id->look == W_DAGGER || id->look == W_1HSWORD || id->look == W_1HAXE) { if(ep == EQP_HAND_R && (pc_checkskill(sd,AS_LEFT) > 0 || (sd->class_&MAPID_UPPERMASK) == MAPID_ASSASSIN || (sd->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO))//Kagerou and Oboro can dual wield daggers. [Rytech] return EQP_ARMS; } return ep; } This seems to be the same one with the latest rAthena code but I have no idea why doesn't it work...
  6. From my research I think pc.c is the only one I should check... Here is my current PC.C int pc_equippoint_sub(struct map_session_data *sd,struct item_data* id){ int ep = 0; nullpo_ret(sd); nullpo_ret(id); if (!itemdb_isequip2(id)) return 0; //Not equippable by players. ep = id->equip; if(id->look == W_DAGGER || id->look == W_1HSWORD || id->look == W_1HAXE) { if(ep == EQP_HAND_R && (pc_checkskill(sd,AS_LEFT) > 0 || (sd->class_&MAPID_UPPERMASK) == MAPID_ASSASSIN || (sd->class_&MAPID_UPPERMASK) == MAPID_KAGEROUOBORO))//Kagerou and Oboro can dual wield daggers. [Rytech] return EQP_ARMS; } return ep; } Should this be changed to if(ep == EQP_HAND_R && (pc_checkskill(sd,AS_LEFT) > 0 && (sd->class_&MAPID_UPPERMASK) == MAPID_ASSASSIN?
  7. Hello, In my emulator, I cannot seem to equip weapons on the Shield slot or Left Hand. All weapons (daggers, swords) just go straight to the Right thus not allowing me to dual-wield daggers. Just the official weapons, as I don't have anything custom. Which part of src should I look into? Thanks!
  8. Hello, Can anyone help me with this compile error? It used to work before but after I tried pulling from my personal repo it now does this: Any help would be much appreciated!
  9. Hello! I've been using the Hunting Missions script at GitHub. For some reason the Party Setup doesn't work for me. When the characters are in a party, the counter won't go up when they kill the required monster. But when he leaves the party, it gains normally. No errors on script run or compile. Any help would be appreciated.
  10. Thank you for your reply. Can you make a quick edit for it? I am not familiar with the flow of the code thank you in advance
  11. Hey Staolao Thank you for the script! is there a way we can set it to reset every 12 AM regardless of cool down. I'd like players to just wait til 12 am and not wait 24 hours at all Thanks!
  12. Hello! I'd like to request a script, or just a draft on how to make an area with barricades to prevent entering the next area until 3 monsters (let's say 1 Poring, 1 Drops and 1 Poporing) are killed in the same map. I'd like to know which function should be used and how nested are they. The idea in my head would be -1 Script Name { If map have mobID present or mobID present or mobID present{ summon barricades to prevent players from accessing the warp portal } else { remove barricades } I believe this won't have any bugs? or will this script only check once? I need to make my script running all the time in the map. And I need to set it to run only for an hour (so I guess OnHourxx)? If someone can make this idea into a real code that would be great Thanks in advance
  13. Hello, I've been using the latest Hunting Mission by Euphy, but I can't seem to make the Party options work. There's no error in the logs, but when the character is in no party the kill count increases. When he joins a party, nothing happens. I've attached my script here, please let me know if I missed anything. Thanks! hunting_missions.txt
  14. Hello, I've made a server where PK on fields/dungeons begin at level 90 onwards with no restrictions. But my PVP Maps became PK maps as well, requiring them to be at level 90. Is there a workaround for this? I'd like my PVP rooms to be free-for-all or no level limits. Thanks in advance!
  15. Thanks so much to even consider! I've added a few more specs in it so there will be less likely follow up additions, you can comment on any of the specs that are not obtainable via src modification Again, thanks so much
  16. Hello, I've been searching around for a 7v7/GvG script but I haven't seen anything that caters to what I want in my server. I would consider myself a novice in coding so I'd like to ask more experienced ones to just even modify existing scripts to these specs: - Can be time configurable (hourly), if no members register in 10 minutes it will cancel - GMs (admin level something) can disable the NPC if ever the map is gonna be used for an event - Party members can be set (for other people to make use of the script) - There must not be repeating classes in a party - 2 parties can register per session - Will be warped to guild_vsx, mapflags set to gvg rules - On warp, there will be 10 seconds to cast buffs/skills, they are closed in a box (barricade/invisible wall) to prevent setting up at an area early - Maybe if possible before the go message, no gvg mapflag yet so Priests can cast Assumptio during buffing period, and non when it starts - Battle begins in 3, 2, 1, go message - The goal is to eliminate the other team - If no one wins within 30 minutes, cast death on a random player every 10 seconds on the map until a team wins (is this possible?) if not, just kill all of them (lol) and announce noone won the match - Winner gets x amount of coins and is broadcasted Thank you in advance to anyone who would consider doing this script.
  17. Hello, I was able to create guilds with spaces without your linked solution. See attached: My Nickame was still set to (). I'd like it to be [ ] I would like to set showname 2 as default as well. How do you do that? Thanks!
  18. Hello, I just started making my own private server and I decided to have a VPS company setup the latest rAthena version. Now, I specified the Ragexe version of the client (2012-04-10aRagexeRE) and they gave me a DIFFd client already. It connects seamlessly without a problem. But I wanted to change the brackets in the guild name (currently it's (Guild Title) instead of [Guild Title]) so I just downloaded a clean 2012-4-10a version and DIFF'd it. My new version can't connect anymore. I didn't change anything yet Server Side, same with the clientinfo. Because the provided one still works. Now, I logged a ticket asking for what they used to DIFF and what did they DIFF. They answered they used NEMO (same with me) and they attached a clean RagexeRE and their NEMO DIFF log. I tried using both of it and it still won't connect. (I'm assuming the guy who set up the server isn't the same guy who replied to my ticket) Is there any way I can just manually HEX the current working client to just be the standard font (see attachment)/bracket, or is there a way to figure out what's causing my failed to connect issue? I would really like to diff my own version of the client. Thank you so much.
  19. Hello, In my Ragnarok I want to use the PIN Code when logging in, but I want to edit the whole interface (buttons, background), where do I find those? I tried scouring the data.grf but to no avail. I can use the default ones though so I know it's there on my client. Thanks
  20. My server just got transferred from one VPS to another, meaning it worked before, I haven't changed client type/version, so basically the mmo.h stays the same and the packetver as well. But when I start up the server on the new VPS and logged in, I can see the server selection screen which is ServerRO (0) then it would just display Failed to Connect to Server after a few seconds. Here is what is happening on the console: Any ideas? Thanks in advance.
  21. Tried it. It automates but script doesn't reach the first areamonster.
×
×
  • Create New...