Jump to content

rexxar31

Members
  • Posts

    137
  • Joined

  • Last visited

Everything posted by rexxar31

  1. 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? 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. i think you need to recompile it..
  6. Nope. therefore where should i put it? it can't be used when not in any sprite folder isn't it?
  7. 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.!
  8. should i also nid to put it in data>sprite>¾Ç¼¼»Ç¸®>¿© data>sprite>¾Ç¼¼»Ç¸®>³² even though it is not an equipment?
  9. anyone know how to fix this?? I guess i follow carefully what judas tutorial said. Thanks for those who will help.
  10. thanks for this. it really help me..
  11. 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.
  12. 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??
  13. 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..
  14. but i already set the drops.config to 10000 if the drop is regular cards and it is = 100%. it also states above that mvp cards has 1000 and is = to 10% how can you explain that? did i need to change all the properties of monsters one by one?
  15. When i add skills then i press the apply button, dont have any changes. what can you tell about this? whats the problem in here?
  16. 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?
  17. item_rate_card: 10000 item_rate_card_boss: 100 item_drop_card_min: 1 item_drop_card_max: 10000 what is the problem here?? bump
  18. thanks mate. so much appreciated.
  19. can i request a mall script with cards like the one that in turbo room? i cant find that script so i am requesting it here. thanks in advance..
  20. // The rate at which cards are dropped item_rate_card: 10000 item_rate_card_boss: 1000 item_drop_card_min: 1 item_drop_card_max: 10000 e2 config ko.. anu prob n2?
  21. Ambagal kc ng Install Creator Pro. Pde ba WinRAR na lang ang gamitin ko para gumawa ng RAR file taz extract nila sa existing RO folder nila? Anu sa palagay nyu?
  22. Install Creator Pro is very slow and i cant make a lite installer when i include the sprites and palletes. Can i use WinRAR? can they only extract it in the latest KRO/Sakray folder? Is it ok?
  23. i dont know where to search it in the npc folder. here is the screen shot. i want to get rid all of it for poring catcher event..
  24. When they had the latest kro/sakray from ratemyserver.net what files do i need to have to make a lite installer of my RO? thanks in advance.!
  25. Where should i remove npc in poring_w01? any help would be so much appreciated. thanks in advance
×
×
  • Create New...