Jump to content

crystalro

Members
  • Posts

    42
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Penang

Recent Profile Visitors

1779 profile views

crystalro's Achievements

Poring

Poring (1/15)

0

Reputation

  1. I wonder why i put correct item code but it appear jellpoly?????? That weird is once i remove item 30187 then no jellpoly anymore...... but once i added 30187 it will got jellpoly, but when i @item 30187 it's no problem Please help... thank you
  2. Hello, Can anyone help me to make a script, for example a guildname is Emperor and who joined this guild Emperor's member all can get Assumption, Blessing and Agility...... not inside guild can't get buff...Thank you
  3. @Helly OMG !!!!!!!!!! Works like a charm................. Actually what's mean about the 63?
  4. Please help me this script , I wonder why other server works and load on my server become other thing....this script refiner is refine 1by1 style.... But i wear full eq ady.... It only appear Shoes , Upper and Garment.. Here this picture and script // function script ValueConvert { // set .@num, atoi(""+getarg(0)); // if ( .@num == 0 || .@num >= 2147483647 ) return getarg(0); // set .@l, getstrlen(""+.@num); // for ( set .@i,0; .@i < .@l; set .@i, .@i + 1 ) { // set .@num$, .@num % pow(10,.@i+1) / pow(10,.@i) + .@num$; // if ( (.@i+1) % 3 == 0 && .@i+1 != .@l ) set .@num$, ","+ .@num$; // } // return .@num$; // } quiz_02,334,78,5 script Refiner 63,{ for( set .@i,1; .@i <= 6; set .@i,.@i + 1 ) if( getequipisequiped( .@i ) ){ if( getequipisenableref( .@i ) && getequiprefinerycnt( .@i ) <= .max_refine ){ set .@eq_count,.@eq_count + 1; set .@menu$,.@menu$ + " +"+getequiprefinerycnt( .@i )+" "+getequipname( .@i ) +":"; }else{ set .@menu$,.@menu$ +":"; } }else{ set .@menu$,.@menu$ +":"; } if( !.@eq_count ){ mes "You dont have any equipment available for refine."; close; } set .@equipment,select( .@menu$ ); set .@temp_equip,getequipid( .@equipment ); do{ if( getequipid( .@equipment ) != .@temp_equip ){ mes "Dont change to other equipments."; close; } set .@eq_level,getequipweaponlv( .@equipment ); if( .@eq_level == 1 ) set .@free_refine,7; else if( .@eq_level == 2 ) set .@free_refine,6; else if( .@eq_level == 3 ) set .@free_refine,5; else set .@free_refine,4; set .@refine_count,getequiprefinerycnt( .@equipment ); if( .zeny_cost ){ mes "Every Refine : ^0055FF"+callfunc( "ValueConvert",.zeny_cost )+" Zeny^000000"; mes "De-refine : ^FF0000Free^000000"; mes " "; mes "If current refine below +^FF0000"+.@free_refine+" : ^FF0000Free^000000"; next; } set .@refine,select(( .@refine_count >= .max_refine )?"":"Refine to ^0055FF+"+( .@refine_count + 1 )+" "+getequipname( .@equipment )+"^000000", ( .@refine_count < 1 )?"":"De-refine -1" ); // temporary disabled de-refine if( Zeny < .zeny_cost && .@refine == 1 ){ message strcharinfo(0),"Dont have enough zeny."; break; } if( .@refine_count < 1 && .@refine == 2 ){ mes "You cant de-refine this anymore."; break; }else if( .@refine_count >= .max_refine && .@refine == 1 ){ mes "You cant refine this anymore."; }else{ if( .@refine == 1 && .@refine_count >= .@free_refine ) set Zeny,Zeny - .zeny_cost; switch( .@refine ){ Case 1: successrefitem .@equipment; break; Case 2: downrefitem .@equipment; break; default: break; } } if( getequiprefinerycnt( .@equipment ) >= .max_refine ){ mes "Max Refine Reach..."; break; } }while( 1 ); close; OnInit: OnWhisperGlobal: set .zeny_cost,0; set .max_refine,10; waitingroom " Refiner",0; end; } @Azura Skyy Not works Not alike the one i'm looking.....
  5. @SoninBlenemBro can you guide me? I don't understand.
  6. Hi, Anyone can share me a refiner +10 script? or help me to script? I need a refiner for FREE OF CHARGES, multiple refine 1 by 1, do not refine accessory and MID & LOWER....... Auto read & follow itemdb which can refine which cannot refine... and 2nd option together with this NPC Can multiple derefine 1 by 1 Thank you!
  7. Hello, I'm using 2015 client but i wonder why once i Secured my GRF and upload it.. it's can't read? For example i secured my Login_background.grf and it's become BLACK i secured my custom items all become black please help
  8. @Tokei Still can't equip Even the hex has calculated
  9. @gugusjungs Errrrrrr... You solved me that all in one npc.... Putty appear
  10. @gugusjungs Please help me this script too bro. Thank you! I wonder why other server works and load on my server become other thing.... this script refiner is refine 1by1 style.... But i wear full eq ady.... It only appear Shoes , Upper and Garment.. Disabled accessory & mid low // function script ValueConvert { // set .@num, atoi(""+getarg(0)); // if ( .@num == 0 || .@num >= 2147483647 ) return getarg(0); // set .@l, getstrlen(""+.@num); // for ( set .@i,0; .@i < .@l; set .@i, .@i + 1 ) { // set .@num$, .@num % pow(10,.@i+1) / pow(10,.@i) + .@num$; // if ( (.@i+1) % 3 == 0 && .@i+1 != .@l ) set .@num$, ","+ .@num$; // } // return .@num$; // } quiz_02,334,78,5 script Refiner 63,{ for( set .@i,1; .@i <= 6; set .@i,.@i + 1 ) if( getequipisequiped( .@i ) ){ if( getequipisenableref( .@i ) && getequiprefinerycnt( .@i ) <= .max_refine ){ set .@eq_count,.@eq_count + 1; set .@menu$,.@menu$ + " +"+getequiprefinerycnt( .@i )+" "+getequipname( .@i ) +":"; }else{ set .@menu$,.@menu$ +":"; } }else{ set .@menu$,.@menu$ +":"; } if( !.@eq_count ){ mes "You dont have any equipment available for refine."; close; } set .@equipment,select( .@menu$ ); set .@temp_equip,getequipid( .@equipment ); do{ if( getequipid( .@equipment ) != .@temp_equip ){ mes "Dont change to other equipments."; close; } set .@eq_level,getequipweaponlv( .@equipment ); if( .@eq_level == 1 ) set .@free_refine,7; else if( .@eq_level == 2 ) set .@free_refine,6; else if( .@eq_level == 3 ) set .@free_refine,5; else set .@free_refine,4; set .@refine_count,getequiprefinerycnt( .@equipment ); if( .zeny_cost ){ mes "Every Refine : ^0055FF"+callfunc( "ValueConvert",.zeny_cost )+" Zeny^000000"; mes "De-refine : ^FF0000Free^000000"; mes " "; mes "If current refine below +^FF0000"+.@free_refine+" : ^FF0000Free^000000"; next; } set .@refine,select(( .@refine_count >= .max_refine )?"":"Refine to ^0055FF+"+( .@refine_count + 1 )+" "+getequipname( .@equipment )+"^000000", ( .@refine_count < 1 )?"":"De-refine -1" ); // temporary disabled de-refine if( Zeny < .zeny_cost && .@refine == 1 ){ message strcharinfo(0),"Dont have enough zeny."; break; } if( .@refine_count < 1 && .@refine == 2 ){ mes "You cant de-refine this anymore."; break; }else if( .@refine_count >= .max_refine && .@refine == 1 ){ mes "You cant refine this anymore."; }else{ if( .@refine == 1 && .@refine_count >= .@free_refine ) set Zeny,Zeny - .zeny_cost; switch( .@refine ){ Case 1: successrefitem .@equipment; break; Case 2: downrefitem .@equipment; break; default: break; } } if( getequiprefinerycnt( .@equipment ) >= .max_refine ){ mes "Max Refine Reach..."; break; } }while( 1 ); close; OnInit: OnWhisperGlobal: set .zeny_cost,0; set .max_refine,10; waitingroom " Refiner",0; end; }
  11. @gugusjungs Thanks so muchhhhhhhhhhhhhhhhhhhhhhhhhhhhhhh!!!!!!!!!!!!!!
  12. @srhmike Or bro can you share me your script? Thanks !!!
  13. @srhmike It's ori script from Euphy...... And you look at the picture, There's wrong parts to remove card.... Upper Headgear part is the Diablo RING... This script no problem at my friend server... But when i load this script to my server i happened these issues. His client 2010, Mine 2015 client ........ Can you help me check?
×
×
  • Create New...