Jump to content

mauiboy

Members
  • Posts

    56
  • Joined

  • Last visited

Posts posted by mauiboy

  1. On 4/23/2024 at 10:23 AM, Bringer said:
     		//Nothing stripped.
    -		if( sd && !i )
    +		if (sd && !i)
     			clif_skill_fail( *sd, skill_id );
    +		if (sd && tsc && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_ROGUE) {
    +			int item_id = 7139; // Glistening Coat
    +			int ii;
    +			ARR_FIND(0, MAX_INVENTORY, ii, sd->inventory.u.items_inventory[ii].nameid == item_id);
    +			if (ii < MAX_INVENTORY) {
    +				pc_delitem(sd, ii, 1, 0, 0, LOG_TYPE_CONSUME);
    +				clif_emotion(src, ET_HUK);
    +			}
    +		}
     		break;
     	}

     

    Thanks man. I will post an update once I tested the codes.


    UPDATE : Bypass strip + glist consume when success working. Thank Bringer for the updated syntax 😉

  2. 1 hour ago, Bringer said:

    you can still use the old Soul Linker Mod

    sample of Old Code

    		case CR_SHIELDCHARGE:
    			if (sd && sd->sc.data[SC_SPIRIT] && sd->sc.data[SC_SPIRIT]->val2 == SL_CRUSADER)
    				skillratio += 60 * skill_lv;
    			else
    				skillratio += 20 * skill_lv;
    			break;

    latest rathena changed the sd->sc.data[SC_SPIRIT] to sd->sc.getSCE(SC_SPIRIT)

    new code will be 

    if (sd && sd->sc.getSCE(SC_SPIRIT) && sd->sc.getSCE(SC_SPIRIT)->val2 == SL_CRUSADER)

     

    You're always a life saver Bringer. Will try these codes. How about the glist consume per success strip?

  3. On 8/30/2022 at 1:42 PM, Chaos92 said:

    Theres a few section there. find it. if Pre-renewal, it will shows Pre-Renewal part

    image.png.f032d7735798f0e24e95ba2d50c6b1d5.png

    remove all # that highlighted until reach level 255. Change MaxBaseLevel to 255 since that what you want, and insert the jobs that u want to reach that level in 'Insert jobs here'. you can see example in db/pre-re/job_stats.yml originally. Example :      Knight: true

    image.png.7fae4edfd76a01bdd220179be78a9085.png

    Same goes to job level, edit MaxJobLevel, insert jobs, uncomment until the level that u want to reach. search until u find for HP and SP and do the same too.

    Hello, can you share the job_exp.yml and job_stats.yml file? the current rathena files in github doesnt have the pre-renewal 255/120 table in it. Thanks!

  4. 28 minutes ago, crazyarashi said:

    I don't know what kind of logic that services have though.  *BREAK*

    Not really a webhost but you can have your DNS set-up for OVH and Conoha. Don't know much about Digital Ocean (Only Used it for the $100 Free Balance Before)

    Yeah, I don't know where the hell he got that "break our vps" thingy, we are just trying to access the vps via Putty.

    How about the database? MySQL? Is it included?

  5. On 7/28/2018 at 7:32 PM, healthydude said:

    OVH 10/10

    @MauiBoy

    It would help if you could provide a detailed explanation as to why you had an untoward experience with Pony.

    VPS is almost always access denied even if you change the root password, we tried to ask them why and ask for assistance but they had no clear answer why.  After that they started blaming us that we are trying to "Break" their vps, we are just trying to access the VPS we have no reasons to do whatever they think we are doing. We are just uploading updates on our server.

    In the past, we avail services of Trinity Networks and we didn't experienced this kind of service only in PonyVPS.

    On 7/28/2018 at 8:12 PM, crazyarashi said:

    I'd suggest OVH | Digital Ocean | Conoha
    RO Hostings out there doesn't really provide the services worth the price. It's better to learn it yourself :))

    Thanks!!! Sorry for this noob question. Does the VPS services of OVH, Digital Ocean and Conoha includes Free SQL and Webhost? ?

    pony.PNG

  6. Hi guys! As the title says. Which VPS nowadays are the best for RO Hosting?

    We experienced the worst hosting services ever via PonyVPS. And we immediately cancelled our services just days past.

     

    Thank for your help!

  7. On 12/15/2016 at 3:36 AM, mrmagic said:

    Did you notice that the deletion time of those 3 chars are the same?

    Maybe there is something wrong with your pc. Try host your server on different pc.

    If that not work. Please post your PC informations.

    I dont think my pc is the problem since I searched same problems(same scenario like randomhotstuff's post).

    My server is currently running in a VPS(linux).

  8. 5 hours ago, reigneil said:

    i think your looking for this:

    although i don't know (idea) how to use it.

    @Secrets

    for me that crimson weapon script is kinda overpower to me. i think there is something wrong with this formula.

    
    (BaseLevel/10)*5)

    base on what i experience in official server.

    I guess this is the solution.

  9.  

     

    CrimsonEnchant.png

     

    Im missig those little windows with the element.

    It should look like that

     

    Mine doesnt have the Element :(

    Paste your item script here

    28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00001000,63,2,34,3,70,1,16,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); },{},{}
    This one for example

     

    Try this

    28007,Crimson_Katar,Crimson Katar,5,20,,1300,130,,1,2,0x00008100,7,2,2,3,1,0,12,{ .@r = getrefine(); bonus bBaseAtk,((BaseLevel/10)*5)+(.@r<=15?pow(.@r,2):225); bonus bAtkEle,Ele_Holy; },{},{}
    
  10. Go to your trunk/src/map/status.c and look for:
    
    		//Bonus by SC
    		if (sc) {
    			if(sc->data[SC_INCMHP])
    				bonus += sc->data[SC_INCMHP]->val1;
    			if(sc->data[SC_EARTH_INSIGNIA] && sc->data[SC_EARTH_INSIGNIA]->val1 == 2)
    				bonus += 500;
    		//Bonus Effect for Wizard & Sage Link 
    			if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
    				bonus += ((TBL_PC*)bl)->status.base_level * 200;

    100% Working! You're a life saver man! Thanks Bringer! /no1

  11. I got this one from here :

    https://rathena.org/board/topic/82740-soul-link-modification/?hl=%2Bsoul+%2Blink

     

    In src/map/status.c 

     

    (Increase HP by BaseLvl*200 HP)

        if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
            maxhp += ((TBL_PC*)bl)->status.base_level * 200;
    

    But cant locate where to put this source code in status.c

     

    This one is WORKING, I already compiled this.

     

    (Increase Vit will by Int/5)

          if(sc->data[SC_SPIRIT] && (sc->data[SC_SPIRIT]->val2 == SL_WIZARD || sc->data[SC_SPIRIT]->val2 == SL_SAGE))
    	  vit += ((TBL_PC*)bl)->status.int_ / 5;
    

    Any idea guys? I really need the Increase HP thingy. Thank you!

  12.  

    if your pre

    add this to your db/import/skill_require_db.txt

     

    215,0,0,17:19:21:23:25,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPWEAPON
    216,0,0,12:14:16:18:20,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPSHIELD
    217,0,0,17:19:21:23:25,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPARMOR
    218,0,0,12:14:16:18:20,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPHELM
    

    and if your re add this instead

     

    215,0,0,17:19:21:23:25,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPWEAPON
    216,0,0,12:14:16:18:20,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPSHIELD
    217,0,0,17:19:21:23:25,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPARMOR
    218,0,0,12:14:16:18:20,0,0,0,99,0,0,none,0,0,7139,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0					//RG_STRIPHELM
    

    Sorry for the super late update. It's 100% working, however it consumes glist even WITHOUT soul link.

     

    And still got this problem, for example. 1 player(with FCP) got stripped by a linked stalker(example, shield is stripped). The enemy player cant use FCP to remove to strip status. Is there a way that I can FCP myself once I got stripped by a Linked Stalker?

×
×
  • Create New...