Jump to content

trickzjen23

Members
  • Posts

    53
  • Joined

  • Last visited

Everything posted by trickzjen23

  1. How can I make consumable item that will affect anyone within the party?
  2. I'd like to request for a source code. 1. Read a text file. 2. Broadcast every line every 30 minutes. Max News Line is 10. 3. I should be able to update the text file, without using @reloadscript.
  3. Got it working. I can't simply compare a string by == "string" so to compare string in C, First I have to declare a variable char with value High Priest Then compare this to sd->status.class_ by Thanks by the way!
  4. Thanks! that helps! This part of the code does not work. (job_name(sd->status.class_) == "High Priest") My job is high priest, but not detecting it. This is the revise code. if( (skill_lv >= battle_config.max_heal_lv) && sd ) { if(sd->status.base_level == 99 && (job_name(sd->status.class_) == "High Priest")) { return 1; } else { return 2; } } It always heals 2. even though I'm level 99, and my job is high priest.
  5. if( (skill_lv >= battle_config.max_heal_lv) && (sd->status.base_level == 99) && (job_name(sd->status.class_) == "High Priest") ) This is giving segmentation fault to my server when heal is used. I want it so that it checks for the base level and job is High Priest.
  6. How can we change the effect of Sanctuary to heal only 1 instead of 777 for red plant monsters?
  7. Ankle Snare is not trapping anyone who just got into the map unless they walk. They could use body reloc to get out. Is there by anychance, trap them right after the map loads? Thanks,
  8. Hello what is the item bonus for Damage reduction increased to 12%?
  9. Hello, i am not sure if I need source modifiction but I want an item script that would make all equipment unbreakable?
  10. What is this used for? when i got query for this table, my character freezes for 3-5 seconds till it finish.
  11. I have a question, i am hosting my server in CentOS. However, due to huge database i have for my server. my server really lagging bad. If I am not mistaken global_reg_variables has 1.6million rows in it. So far, what I did was to switch all MySAM tables to Innodb.(avoid locking queries) I would like to ask what is the best mySQL server configuration for the best performance? I mean for /etc/my.cnf? My server has 12 GB Ram, and 8 cores. Thanks!
  12. Here is the BT Full from the coredump. Can anyone help to prevent the map server to crash? bump
  13. Need help with the DOS. I'm getting this fatal error message when I could no longer log in to the SSH, but when i have an active SSH, the response when typing is very slow. [Fatal Error]: Server has crashed without a connection to the char-server, 61 characters can't be saved! Segmentation fault. Before the error above happen, I would not be able to login to the ssh. Once I had an active ssh, the char_server_sql is consuming unusual usage of the memory 50% and so as the SQL I already installed CSF limiting access to UDP and TCP ports, and contacting my HOST. My host said it couldn't be a DDOS attack.
  14. eA is my emulator, but since eAthena has closed down, i hope people here can help me. There was a deal bug happening in my server. I don't know if this is known issue but google can't get me answer so im posting it here. So let me explain the scenario Scenario: Player 1(7k Platinum) and Player 2(Expensive Card) Player 1 trade Player 2 Player 1 put the7k platinum coins to the deal with Player 2, Player 2 put the expensive card in the deal as well Player 2 got killed. Player 2 got 100 platinum coins and player 1 got 7k platinum and the expensive card ​​ Is this a known bug?
  15. Yes that's it! Is anyone kind enough to make a custom mapflag to disable alliance only on certain maps?
  16. Is there a way to disable Alliance during WoE? Thank in advance!
  17. Thank you, what will happen for level 1, 2 ,3 and 4 effect? isn't this going to change everything to + 50 attack? nevermind, i see how the formula works now. case SC_IMPOSITIO: //val2 = 5*val1; //watk increase if(val1 == 5) val2 = 50; else val2 = 5*val1; //watk increase break;
  18. I was looking in skill.c and status.c but I'm out of luck. I would like to make some changes for impositio skill of Priest; I would like to make it +50 atk instead for maximum level. Thank you in advance!
  19. Thank you! is it also possible to get which map or location of a specified char id?
  20. Hi! I would like to ask for what is the best way to get the level of the opponent without using SQL Query. I do have a OnPCKillEvent: and I can get the killer id with set @killedrid, killedrid; Well, my question is, how would I be able to check the level of the opponent without doing a query, cause it will take a lot of server resources if I do query every time a character try to kill.
  21. How would I change it so that it will not affect the damage to any monsters? because I have MVP arena, and the PVP is always on there, and they could kill the boss easily.
  22. that works... thank you very much =) Can it be in the same format though? The format is different, it doesn't let me convert my clientinfo.lua to clientinfo.lub
  23. Hello is it even possible to encrypt my clientinfo.xml? I tried some encrypting program called Securegrf and they do not work. Please help
  24. Hello Rathena I would like to ask the steps and the things I need to know to convert eAthena to Rathena. I'm think that the server database itself are quit different from Rathena, so do I need to convert my databases as well? This will be very beneficial to all eAthena users that wanted to go to Rathena!
×
×
  • Create New...