Jump to content

dantoki

Members
  • Posts

    238
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by dantoki

  1. I edit my status.cpp

    this

    stat += status->luk + 10; // (every 10 luk = +1 perfect flee)

    to this :

    stat += status->luk + 100; // (every 100 luk = +1 perfect flee)

    and recompiled my server and still doesn't apply the changes there's no error either.

    hmmm... can someone help me i need it badly. thanksss!!!

  2. This command from eAmod

    /*==========================================
     * Creaci?e items en el suelo, en un Area.
     *------------------------------------------*/
    ACMD_FUNC(flooritem)
    {
    	char item_name[100];
    	int number = 0, count;
    	struct item_data *item_data;
    	nullpo_retr(-1, sd);
    
    	memset(item_name, '\0', sizeof(item_name));
    
    	if( !message || !*message || (
    		sscanf(message, "\"%99[^\"]\" %d", item_name, &number) < 1 &&
    		sscanf(message, "%99s %d", item_name, &number) < 1
    	)) {
    		clif_displaymessage(fd, "Usage: @flooritem <itemname/itemid> [quantity]");
    		return -1;
    	}
    
    	if( number <= 0 )
    		number = 1;
    
    	if ((item_data = itemdb_searchname(item_name)) == NULL &&
    	    (item_data = itemdb_exists(atoi(item_name))) == NULL)
    	{
    		clif_displaymessage(fd, msg_txt(sd,19)); // Invalid item ID or name.
    		return -1;
    	}
    
    	count = map_addflooritem_area(&sd->bl, 0, 0, 0, item_data->nameid, number);
    
    	if( count != 0 )
    		if( number == count )
    			clif_displaymessage(fd, "All items created.");
    		else
    		{
    			sprintf(atcmd_output, "%d item(s) created.", count);
    			clif_displaymessage(fd, atcmd_output);
    		}
    	else {
    		clif_displaymessage(fd, "No items created!!.");
    		return -1;
    	}
    
    	return 0;
    }

    can add to rathena ?

  3. I've already done searching for guides but most of it seems OLD and can't apply to the latest git, is there anyone know how to ADD CUSTOM JOB 2019 ?

    Note: Im using 2015 client so i can ENABLE CUSTOM JOB.

    I've perfectly apply this guide

     but still i have an error.

    image.png.23c7f809ee5b92254a9ccd0646836acf.png

    Please Guide me thanks.

  4. Bump

    On 5/11/2019 at 5:46 AM, EIysium said:

    You can enable in db/pre-re or re/skill_db.txt

    16 inf3 (skill information 3):

    0x000010 - skill that could hit emperium

     

    Search

    
    434,9,6,1,0,0x1,0,3,1,yes,0,0,0,magic,0,0x0,	SG_HATE,Hatred of the Sun Moon and Stars

    replace:

    
    434,9,6,1,0,0x1,0,3,1,yes,0,0,0,magic,0,0x10,	SG_HATE,Hatred of the Sun Moon and Stars

     

    thanks!

×
×
  • Create New...