Jump to content

mrdominic

Members
  • Posts

    14
  • Joined

  • Last visited

Posts posted by mrdominic

  1. On 10/4/2017 at 11:18 PM, GodKnows Jhomz said:

    Open "src/common/mmo.h" and find :

    
    #define MAX_INVENTORY 100 ///Maximum items in player inventory

    Edit the value to what you want. I don't know what is the maximum value that we can use there so don't make it too high.
    Here's a sample after applying maximum 200 MAX_INVENTORY.

    image.png.92961042a641b4a805cce4aaaa7b2d47.png
    (Don't forget to recompile your server.)

    when you make it 200 MAX_INVENTORY, it's safe right?

  2. Utilities: @alootid2 Command


    File Name: @alootid2 Command

    File Submitter: mrdominic

    File Submitted: 31 August 2017

    File Category: Utilities

    Content Author: mrdominic

     

    Features

    • You can input multiple item ID for alootid with just 1 command.
    • You can add the input list as much as you want (but remember. There is a Max alootid item.)
    • You can change the alootid max item at src/config/core.h in your server database.
      Find this:
      /// Max number of items on @autolootid list
      #define AUTOLOOTITEM_SIZE 10     <<<<< change the number to what you want.
    • And don't forget to recompile your server if you change something in src folder.


    How To Use
    Just add this script to your server and enable it.


    • Submitter
    • Submitted
      08/31/2017
    • Category
    • Video
    • Content Author
      mrdominic

     

    • Like 1
  3. I try to make it like you want...
    Try this...

    //===== rAthena Script =======================================
    //= alootid2
    //===== By: ==================================================
    //= mrdominic
    //===== Current Version: =====================================
    //= 1.0
    //===== Compatible With: =====================================
    //= rAthena Project
    //===== Description: =========================================
    //= make multiple alootid.
    //= alternative alootid command
    //= with 1 command, you can input up to 5 item to your alootid list
    //= you can add the input as much as you want
    //= but remember... there is a max alootid limit
    //===== Additional Comments: =================================
    //= 1.0 First version. [mrdominic]
    //============================================================

     

    alootid2.txt

  4. in thist script, all member of the Emperor Guild will get Agi,Bless & Assump, and another guild will get just 1 buff ex:Gloria, then you can try this.


    NOTE: you must check the Guild ID first.

    prontera,151,188,5	script	Healer#spcgbuff	754,{
    
    if(strcharinfo(2)==getguildname(4)) goto gemperor;	//"4" is the guild ID. You can check it in your sql database at Guild section.
        specialeffect2 14; percentheal 100,100;	 	//for another guild
    	sc_start SC_GLORIA,360000,5;	 		//for another guild
    	end;
    
    gemperor:						//just for guild emperor
    	specialeffect2 120; percentheal 100,100;
    	sc_start SC_BLESSING,360000,10;
    	sc_start SC_INCREASEAGI,360000,10;
    	sc_start SC_ASSUMPTIO,360000,5;
    	end;
    }

     

    Sorry for my bad english Xp

  5.  

    well,  did you try    bonus bNoMagicDamage,100; <-- reducing this number? i dont know like 30? or 20?  the bonus work with % so if you reduce it the user only have that % of reduction.

     

     

    From doc/ítem_bonus.txt

    bonus bNoMagicDamage,n; Adds n% reduction to received magical effect (attack, healing, support spells are all blocked)​

    I already try it... i change it to 50. And the effect become just reduce magic damage by 50%. And not blocked all support spells.

    and i already checked at doc/item_bonus.txt for alternate bonus and i got nothing.. T.T

  6. hi there... i want to ask, is there any possible script code to make if the player who used golden thief bug card, they cant be dispelled and still receive magic damage ?

    Because if i use the real gtb script (bonus bNoMagicDamage,100;), it makes the player who used gtb card immune to magic and buff.

     

    thx for your help and sorry for my bad english >.<

  7. Try go to your server folder, go to Conf\battle\ and open file that called exp.conf with Notepad++.

     

    Edit this line......

    // Rate at which exp. is given. (Note 2)
    base_exp_rate: 100
    
    // Rate at which job exp. is given. (Note 2)
    job_exp_rate: 100
    

    Change that 100 to 200000000000 to both of them. Compile and then try to kill monster. See how it goes....

    Ok.. thx... i'll try it...

    btw still got this error..

    error.JPG

  8. Can anyone please help me how to make a script...

     

    Case example :

     

    - Guild "Anonym" have a Guild Base at map "Payon".

    - Guild "Anonym" 's guild ID is 19.

    - Every 3 seconds, this NPC will check every Character Guild in Map (Payon).

    - Everyone except Guild "Anonym", will be warped to "Prontera(155,181)".

     

    Thanks before for helping me... /thx

    Btw, I really need this script and sorry if there are mistakes in my english... /wah/sob

×
×
  • Create New...