Jump to content

mauiboy

Members
  • Posts

    63
  • Joined

  • Last visited

Posts posted by mauiboy

  1. Hello! This code currently compiles without error. But the Dispell skill still bypassing GTB. Anyone with updated code for this? Thank you!

    		if (skill != nullptr && (skill->skill_type == BF_MAGIC || skill->nameid == SA_DISPELL) && // Basic magic skill
    			!skill->inf2[INF2_IGNOREGTB] && // Specific skill to bypass
    			((skill->inf == INF_ATTACK_SKILL || skill->inf == INF_GROUND_SKILL || skill->inf == INF_SUPPORT_SKILL) || // Target skills should get blocked even when cast on self
    			 (skill->inf == INF_SELF_SKILL && src != bl))) // Self skills should get blocked on all targets except self
    			return 0;
    	}

     

  2. 7 hours ago, Akbare-2nd said:

    Maybe you can make a Gold Ticket and give a rental duration of 24 hours, used when the player enters the gold room.

    Hello, I need to totally control the zeny flow in our server since we are planning to implement the auto attack system that's why we want to limit the gold gain per day.  Example 15k gold max per day.

  3. 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 😉

    • Like 1
  4. 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?

  5. 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!

  6. 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?

  7. 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

  8. 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!

  9. 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).

  10. 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.

×
×
  • Create New...