rAthena: To Disable Doram Race in Character Creation

This tutorial on how to disable doram race in emulator or server files located in Trunk/src/char/char.c or Trunk/src/char/char.cpp

Find this code:

#if PACKETVER >= 20151001
if (start_job != JOB_NOVICE && start_job != JOB_SUMMONER)
return -2; // Invalid job

Replace with:

#if PACKETVER >= 20151001
if (start_job != JOB_NOVICE)
return -2; // Invalid job

Then recompile your server.




  • 777 Utilisateurs l'ont trouvée utile
Cette réponse était-elle pertinente?

Articles connexes

Custom Items

Alternative Video Tutorial: https://youtu.be/cV11LJ0VDakFirst, let's take a look at the item_db...

Ragnarok Developer Tools

Hercules Forumhttp://hercules.ws/board/rAthena Forumhttp://rathena.org/board/GRF ToolBest GRF...

Tips for Ragnarok Newbie Developer

  1. Setup your Offline Server and practice:...

How to delete Specific Item from all accounts in your Ragnarok database

1. Login to your phpmyadmin2. Click to ragnarok database3. Click to SQL4. Copy and paste the...

How to Change the Server Configuration

Changing the Max Level:» https://gomanilahost.net/knowledgebase/119/Edit-Max-Level.htmlChanging...