Jump to content

Hergel

Members
  • Posts

    22
  • Joined

  • Last visited

  • Days Won

    1

Hergel last won the day on October 26 2023

Hergel had the most liked content!

Profile Information

Contact Methods

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Hergel's Achievements

Santa Poring

Santa Poring (3/15)

  • Collaborator
  • First Post
  • One Year In
  • Dedicated
  • One Month Later

Recent Badges

5

Reputation

3

Community Answers

  1. Change Database/Table Character Set: If the current character set does not support Thai characters, you will need to alter your database and tables to use a character set that does, such as utf8mb4. This can be done with queries like: ALTER DATABASE your_database_name CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; ALTER TABLE your_table_name CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; Also you can just re-create the db : CREATE DATABASE new_rathena_db CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;
  2. The error message msize: estouro nos limites da matrizindicates that the arraymsizehas been declared to have a second dimension size of 7 characters, but you are trying to initialize it with strings that are potentially longer than 6 characters (remember that you need an extra character for the null terminator\0` in C++ strings). Similarly, for melement, you're trying to initialize it with strings that might be longer than the declared size once you consider the null terminator. Now you can try with this code: unsigned char msize[SZ_ALL][8] = { "Pequeno", "Medio", "Grande" }; // changed from [7] to [8] unsigned char melement[ELE_ALL][9] = { "Neutro", "Agua", "Terra", "Fogo", "Vento", "Veneno", "Sagrado", "Sombrio", "Fantasma", "Maldito" }; // changed from [8] to [9]
  3. I going to ask the same, are you able to use YAML? if is no the case, you can try this: 5516,Hawk_Eyes01,hawk Eyes,4,20,,100,,0,,1,0x808,2,2,512,,60,0,23,{ bonus bDex,1; bonus bLongAtkRate,150; },{},{}
  4. Do you use the YML format ? If you only are lookinf for syle, you can try this 28356,Brasao_da_Metamorfose,Brasão da Metamorfose,12,0,,0,,,,0,0xFFFFFFFF,63,2,262144,,1,1,,{ specialeffect2 EF_FIRESPLASHHIT; },{ setlook LOOK_BODY2,1;); },{ setlook LOOK_BODY2,0; }
  5. I'm sorry, can you display or descirbe with more details, what is the issue with this script ?
  6. Glad to heard that, that's the important, good luck.
  7. For the Patcher is not big deal, for the launcher exe is harder. you can use ResourceHacker.exe Open your Thor.exe with the program Open the "icon Group" Right click in the MAINICO option amd select "Replace Icon..." Select "Open file with new Icon..." and select your best icon, I can recomend you 64x64 size Then save your change in "Save as" option And that's it, let me know if you have any question, resource_hacker.zip
  8. Did works with @questskill 238 ? I can change the script to use this comand, also make sure your basic skills is at least level 9 to can up those skills
  9. I believe it would be simpler to add an NPC that give to the players all those skills. For the Bioethics skill, you can use the following straightforward script: prontera,140,180,4 script Bioethics Granter 100 ,{ if (BaseJob == Job_Alchemist || BaseJob == Job_Creator || BaseJob == Job_Genetic) { // Replace with correct job constants if needed if (getskilllv("AM_BIOETHICS")) { mes "You already have the Bioethics skill!"; close; } else { mes "You are qualified to learn Bioethics."; mes "I will grant you this skill now."; skill "AM_BIOETHICS",1,SKILL_PERM; // Use the correct skill identifier and level close; } } else { mes "I'm sorry, but only Alchemists and their transcendent and third job forms can learn Bioethics."; close; } }
  10. The real reason is becasue these is not a base skills, you should get it by some queste, however you can use this comand to get those: @questskill 238
  11. Can you try this just to test propose ? replace this : mapwarp .map_list$[.map],.npc_map$,.npc_x,.npc_y; to this: mapwarp .map_list$[.map],"prontera",155,181; Are you getting any console error ?
  12. Can you try copy and paste and replace the first line for this prontera,155,172,3 script Test 880,{
  13. Identify where the mob skill is that you want to edit or remove, it is important to know the ID of your moob Once identified you can search by id within these files Once identified, by the id of the monster, you will see all the skills it has, it is linked to skill_id if you have no idea what skill it is you can investigate by skills_id or adding one by one to discover it For example Poring skills : 1002,Poring@NPC_EMOTION,loot,197,1,2000,0,5000,yes,self,always,0,2,,,,,, 1002,Poring@NPC_WATERATTACK,attack,184,1,2000,0,5000,yes,target,always,0,,,,,,,
  14. This is not a real solution but can really help, can you try to minimize the skills windows as old version and try to up the skill?
  15. After using @mapexit, you can't do anything else. This is the last command you should use to safely shut down the server. If you want to kick all the players and then warp to another map, you can try using @kickall
×
×
  • Create New...