Jump to content

rexxar31

Members
  • Posts

    137
  • Joined

  • Last visited

Posts posted by rexxar31

  1. can someone tell me how to put .grf file to patch? i mean does it gave any bug or error? thor patcher recommends not to put.grf file to patch but i need it. thanks for answering :)

    EDIT: By the way. what files can you put in a patch? i tried to include DATA.INI in the patch but it didnt work.

  2. //===== eAthena Script =======================================
    //= Custom Free Breeder aka Universal Renter (not reccomended)
    //===== By: ==================================================
    //= eAthena Team
    //===== Current Version: =====================================
    //= 1.7
    //===== Compatible With: =====================================
    //= eAthena 1.0 Final +
    //===== Description: =========================================
    //= A Free PecoPeco and Falcon Breeder
    //===== Additional Comments: =================================
    //= 1.1 FIXED checkriding/cart/falcon funcs [Lupus]
    //= 1.2 Added Rebirth/Advanced Class support [Mass Zero]
    //= 1.3 Simplified the checks of job [silentdragon]
    //= 1.3a Fixed a Typo Error. [samuray22]
    // -Thanks to ~AnnieRuru~.
    //= 1.4 Optimized Script. No need for 50 million Labels. [spre]
    //= Added renting of Dragons . [The Quality Maker]
    //= 1.5 Added option for Gryphons and fixed problem with Peco and Rune Knight. [Ryo-Kun]
    //= 1.6 Added provisory renting of Magic Gear. [Viktus]
    //= 1.7 Fixed for 3CeAM Emulator.[Kimimaro]
    //============================================================
    
    prontera,143,179,5 script Universal Rental Npc 459,{
    mes "[universal Rental Npc]";
    mes "Hi, here you can rent Carts, Falcons, Pecopecos.";
    next;
    switch(select("Cart:Falcon:Peco")) {
    case 1:
    	if((BaseClass == Job_Merchant || BaseJob == Job_SuperNovice) && checkcart() == 0 && getskilllv("MC_PUSHCART")>0) {
    		setcart;
    		close;
    	}else{
    		mes "[universal Rental Npc]";
    		mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
    		close;
    	}
    case 2:
    	if(BaseJob != Job_Archer && BaseClass == Job_Archer && checkfalcon() == 0 && getskilllv("HT_FALCON")>0) {
    		setfalcon;
    		close;
    	}else{
    		mes "[universal Rental Npc]";
    		mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
    		close;
    	}	
    case 3:
    	if (BaseJob != Job_Swordman && BaseClass == Job_Swordman && checkriding() == 0 && getskilllv("KN_RIDING")>0 && Class != 4054 && Class != 4060 && Class != 4066 && Class != 4073) {
    		setriding;
    		close;
    	}else{
    		mes "[universal Rental Npc]";
    		mes "Sorry " + strcharinfo(0) + ", Please make sure you are the required job and have the required skill.";
    		close;
    	}
    
    }
    }

    this is my rental npc.. and no other script deals with rental of carts peco and falcon.. BTW im using eathena. :)

  3. prontera.gat,160,184,1 script Buffer/Healer::buff 121,{
    percentheal 100,100;
    
    
    skilleffect 383,0; sc_start SC_WINDWALK,360000,5;
    skilleffect 33,0; sc_start SC_ANGELUS,360000,10;;
    skilleffect 74,0; sc_start SC_MAGNIFICAT,360000,5;
    skilleffect 75,0; sc_start SC_GLORIA,360000,5;
    skilleffect 66,0; sc_start SC_IMPOSITIO,360000,5;
    skilleffect 67,0; sc_start SC_SUFFRAGIUM,360000,3;
    skilleffect 34,0; sc_start SC_BLESSING,360000,10;
    skilleffect 29,0; sc_start SC_INCREASEAGI,360000,10;
    skilleffect 155,0; sc_start SC_LOUD,360000,1;
    skilleffect 45,0; sc_start SC_CONCENTRATION,360000,10;
    
    }
    

    this is my buffer npc. i only add the sc_concentration at the bottom. every buff works but the improve concentration skill status wont show up in the right side of the client.. how to fix this?

  4. 1530,Mjolnir,Mjolnir,4,20,,6000,250,,1,0,0x000444A2,7,2,2,4,95,0,8,{ bonus bAtkEle,Ele_Wind; bonus bDex,40; bonus bStr,15; bonus bAspdRate,10; bonus bUnbreakableWeapon,0; },{},{}
    

    i think "0x000444A2" is the job, but how can i change that? example i want it to use by mages? can you give me some help or link about this job code stuff?? thanks.. :)

  5. no i mean. heres the situation. in my client.. everything works fine. i can change my hairstyle cloth color and hair color. but when other player use the change hairstyle, their client crashes. maybe i just missed a folder containing the hairstyle in my lite installer, or is it their data.grf?? please help here. thanks :o

×
×
  • Create New...