Jump to content

rexxar31

Members
  • Posts

    137
  • Joined

  • Last visited

Posts posted by rexxar31

  1. - script Sample -1,{
    OnPCLoginEvent:
    if(getgmlevel() < 60) {
    atcommand "@option 2";
    mes "Please Red Colour Key in the Code...";
    set .Code,rand(1000,99999);
    mes "^0000FF"+rand(1,9999)+"^FF0000"+.Code+"^0000FF"+rand(1,9999)+"^000000";
    input @Code;
    if( @Code != .Code ){
    atcommand "@kick "+strcharinfo(0);
    }else{
    atcommand "@option 0";
    }
    end;
    }
    

    not working. all characters can login and the anti bot is not working.

  2. you can use Microsoft Visual C++ 2008 Express Edition.

    go to your server then open eAthena-8 (myserver is eAthena) click on char-server_sql, login-server_sql and map-server_sql (holding ctrl to click the three) right click then rebuild. Wait for it to finish and done.! ^_^

  3. function script RefineFunc {
    for( set .@i,1; .@i <= 10; set .@i,.@i + 1 )
    set .@Menu$,.@Menu$ + (( getarg(1) & pow( 2,(.@i-1 ) ) && getequiprefinerycnt( .@i ) < getarg(2) && getequipisequiped( .@i) )?"^FF0000+"+getequiprefinerycnt( .@i )+" ^0000FF"+getequipname( .@i )+" "+( getitemslots( getequipid( .@i ) )?"["+getitemslots( getequipid( .@i ) )+"]":"" )+"^000000":"" )+":";
    select( .@Menu$ );
    if( !countitem( getarg(0) ) )
    mes "You didnt have ^FF0000"+getitemname( getarg(0) )+"^000000 to refine.";
    else if( getarg(3) == 1 && !getequipisenableref( @menu ) )
    mes "I cant refine this items. Because it is ^FF0000Un-Refineable^000000.";
    else{
    if( getarg(4) )
     while( getequiprefinerycnt( @menu ) < getarg(2) )
      successrefitem ( @menu );
    else
     successrefitem ( @menu );
    delitem getarg(0),1;
    mes "You have gained : ";
    mes "^FF0000+"+getequiprefinerycnt( @menu )+" ^0000FF"+getequipname( @menu )+"^000000";
    }
    close;
    }
    

    i am using this refiner and it cant refine Gentleman's Pipe and Lighthalzen Aura even i set the refinable to 1 in item_db.txt. Does this script have any problem?

    screenjimrov2000.jpg

    i cant refine the gentlemans pipe. i also have lighthalzen aura for lower headgear and i cant also refine it. i make sure that both items are refinable. can you please check this script for me? btw its from sir emistry

    //--- Bitmasks ----
    // 1 - Top Headgear
    // 2 - Armor
    // 4 - Left Hand
    // 8 - Right Hand
    // 16 - Garment
    // 32 - Shoes
    // 64 - Left Accessory
    // 128 - Right Accessory
    // 256 - Middle Headgear
    // 512 - Lower Headgear
    // .....callfunc( "RefineFunc",<itemID>,<BitMasks>,<MaxRefine>,<CheckEquip>,<RefineMode> );
    //   itemID  -> Item that will be used.
    //   BitMask  -> Refer to above bitmask table.
    //   MaxRefine -> What is the Max Refine. [ Can Bypass Default Server Max Refine ]
    //   CheckEquip -> Check Equipments is Refineable or not. [ 0 = Disable / 1 = Enable ]
    //   RefineMode -> +1 / Max Refine. [ 0 = +1 Refine / 1 = Max Refine ]
    // Notes : You can Customize it according to whatever way you want.
    // Different NPCs / Items with Different Settings.
    // It use 1 items that you defined to Refine all Equipments according to your Settings.
    //----------- If used this as Item Script -----------
    // Example :
    //  501,Red_Potion,Red Potion,11,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ callfunc( "RefineFunc",501,63,10,1,1 ); },{},{}
    // Change Item Type to 11
    //----------- If used this as NPC Script ------------
    // Example :
     prontera,164,172,3 script Donation Refine 63,{
      callfunc( "RefineFunc",7922,63,10,1,1 );
     }
    
    function script RefineFunc {
    for( set .@i,1; .@i <= 10; set .@i,.@i + 1 )
    set .@Menu$,.@Menu$ + (( getarg(1) & pow( 2,(.@i-1 ) ) && getequiprefinerycnt( .@i ) < getarg(2) && getequipisequiped( .@i) )?"^FF0000+"+getequiprefinerycnt( .@i )+" ^0000FF"+getequipname( .@i )+" "+( getitemslots( getequipid( .@i ) )?"["+getitemslots( getequipid( .@i ) )+"]":"" )+"^000000":"" )+":";
    select( .@Menu$ );
    if( !countitem( getarg(0) ) )
    mes "You didnt have ^FF0000"+getitemname( getarg(0) )+"^000000 to refine.";
    else if( getarg(3) == 1 && !getequipisenableref( @menu ) )
    mes "I cant refine this items. Because it is ^FF0000Un-Refineable^000000.";
    else{
    if( getarg(4) )
     while( getequiprefinerycnt( @menu ) < getarg(2) )
      successrefitem ( @menu );
    else
     successrefitem ( @menu );
    delitem getarg(0),1;
    mes "You have gained : ";
    mes "^FF0000+"+getequiprefinerycnt( @menu )+" ^0000FF"+getequipname( @menu )+"^000000";
    }
    close;
    }
    

  4. - script Sample -1,{
    OnPCLoginEvent:
    if( BaseClass == Job_Bard || BaseClass == Job_Dancer || BaseClass == Job_Novice || BaseClass == Job_Swordsman|| BaseClass == Job_Archer || BaseClass == Job_Thief || BaseClass == Job_Merchant || BaseClass == Job_Mage || BaseClass == Job_Acolyte ||
    BaseClass == Job_Super_Novice || BaseClass == Job_Knight || BaseClass == Job_Crusader || BaseClass == Job_Hunter || BaseClass == Job_Assassin || BaseClass == Job_Rouge || BaseClass == Job_Blacksmith || BaseClass == Job_Alchemist || BaseClass == Job_Sage ||
    BaseClass == Job_Wizard || BaseClass == Job_Priest || BaseClass == Job_Monk || BaseClass == Job_High_Novice || BaseClass == Job_High_Swordsman || BaseClass == Job_High_Archer || BaseClass == Job_High_Merchant || BaseClass == Job_High_Thief || BaseClass == Job_High_Mage ||
    BaseClass == Job_High_Acolyte || BaseClass == Job_Lord_Knight || BaseClass == Job_Paladin || BaseClass == Job_Sniper || BaseClass == Job_Clown || BaseClass == Job_Gypsy || BaseClass == Job_Assassin_Cross || BaseClass == Job_Stalker || BaseClass == Job_Whitesmith || BaseClass == Job_Creator ||
    BaseClass == Job_High_Wizard || BaseClass == Job_Professor || BaseClass == Job_Champion || BaseClass == Job_High_Priest){
    atcommand "@option 2";
    mes "Please Red Colour Key in the Code...";
    set .Code,rand(1000,99999);
    mes "^0000FF"+rand(1,9999)+"^FF0000"+.Code+"^0000FF"+rand(1,9999)+"^000000";
    input @Code;
    if( @Code != .Code ){
     atcommand "@kick "+strcharinfo(0);
    }else{
    atcommand "@option 0";
    }
    close;
    }
    end;
    }
    }
    

    How can i edit it so that when a gm of level 99 logs in. the anti bot wont work?

  5. should i also nid to put it in

    data>sprite>¾Ç¼¼»Ç¸®>¿©

    data>sprite>¾Ç¼¼»Ç¸®>³²

    even though it is not an equipment?

    Nope.

    therefore where should i put it? it can't be used when not in any sprite folder isn't it?

  6. well i guess you didnt put the right name of your .bmp in item and collection folder check your idresnametable.txt if the name match with your item and collection.

    well my image in item folder has different name in my collection folder. ex. item folder = apple.bmp collection folder = apple1.bmp, what should i put in the idresnametable.txt? does this apply to the view in equipment or the one when you right click the item? what should i edit if i put the correct name in idresnametable.txt?

    Problem Solved: I just make it the same name and put the correct name in idresnametable.txt Thanks a lot mate.! ^_^

  7. How to create custom etc? like blue proof of donation? I have seen many tutorials on how to create custom items but the always showing a headgear. I dont know how to add etc, I'm just confused because in headgear there is a male and female folder to put it on but for custom etc did you need to put it there also? Please give me some guide on how to make a custom etc. Thanks in advance. ^_^

  8. ^_^ Nacheck mo na ba in-game kung nagbago yung droprate ng card? if nagbago well your configuration went good if not dun mo macoconclude na may problem nga sa drop rate configuration. Mas maganda kung magpost ka ng Print screen if possible para mas malinaw sa amin at matulungan ka ng mabilis :P

    boss pag nag @mi poring ako 1.00% pdin ung drop rate ng card.. pero sa drops.conf nmn ee nka set na 10000 = 100% dbah? anu un iseset ko 1 by 1 ung mga monsters??

    screenjimrov2003.jpg

  9. nope.. transcender class only. i think he is a lord knight. he said that he cant put the riding and the cavalier mastery. and also someone reported me about a champ that cant put skills also.. yeah very weird problem..

  10. item_rate_card: 10000

    item_rate_card_boss: 1000

    item_drop_card_min: 1

    item_drop_card_max: 10000

    this is my drop.conf, any card dont drop, what is the problem in here?

    but when i use @mi poring, poring card = 1.00% any suggestions?

×
×
  • Create New...