

iamdrakesky19
Members-
Posts
19 -
Joined
-
Last visited
Profile Information
-
Gender
Male
-
Location
philippines
Recent Profile Visitors
1306 profile views
iamdrakesky19's Achievements

Poring (1/15)
0
Reputation
-
im using 20120410 client i get a cart from the universal rental npc then when i try to reconnect the cart was gone and i cant get another cart again. it says you do not meet the requirement and also i cannot change my cart into different one please help me on this
-
Please help me on this. when i try to kill a poring my client will stop working then i try other monsters its fine then i try to kill phreeoni or any mvp mobs my client will stop working again please help me on this i already turn off my tomb and may kro is updated im using 20120410 please help me . . i didnt put any custom item drop on those monsters
-
can someone help me please =( i want to set the output damage to 999 999 eventhough the damage dealth is more than 999 999 i.e. Turtle General HP is set to 1 000 000 then i cast Asura on it then the damage dealt is 1 200 000 but the damage that will show has to be 999 999 only how to do these ?? =( need help please
-
how to change this font how to change this interface im pertaining to login interface not the background thank you please help and the font as well
-
actually sir i dont know who is the author and i think the name is core1 =(
-
-
thank you =)
-
oic =) thank you so much sir this helps a lot =) where can i find those resources ??
-
oh sorry Technoken . . im not updated for this script =( . . can you help me fix this one ?? im having the same problem the equip position //==============================================================================// //= Script Release : Refiner Ticket [ Version 1.5 ] //==================================By==========================================// //= Idea : ManiacSociety //==============================================================================// //= Helper : E M I S T R Y //==============================================================================// //= D E S C R I P T I O N S //==============================================================================// // -- 1. Character can choose what equipments they want to be refined. // -- 2. This NPC only have 1 Time Usage. // If it is set to Account Based then that account can use 1 times. // If it is set to Character Based then all new character can use 1 times. // -- 3. Complete skills / Skill Points will be given if it is set to be. // -- 4. Base Level and Job Level will be given upon Job Change. // -- 5. Allow players to click an items to call out the NPC. //==============================================================================// //= V E R S I O N S //==============================================================================// // -- [ 1.5 ] : Added 2 Refine Mode + Refinable check before Refine // [ Mode 0 - Refine the Equipments +1 everytime. ] // [ Mode 1 - Refine the Equipments to Max Refine Limits. ] // -- [ 1.4 ] : Simplify Refine Commands . // -- [ 1.3 ] : Added Easy Configuratuin Settings . // -- [ 1.2 ] : Equipments can be refined to Max in 1 time . // -- [ 1.1 ] : Changed to Ticket Type Refiner . // -- [ 1.0 ] : Simple Refiner NPC. //==============================================================================// //= R U L E S //==============================================================================// // -- 1. Do not use for exchanging purpose. // -- 2. Do not claim it as yours. // -- 3. Do not change or remove the credits. // -- 4. Do not sell the script in order to get paid. // -- 5. Do not re-sharing upon modified without permission. //==============================================================================// // -- Sample Item DB [ Refiner Ticket ] // -- Set Item Type to 11 //501,Red_Potion,Red Potion,11,50,,10,,,,,0xFFFFFFFF,7,2,,,,,,{doevent "TicketRefiner::OnUsed"; },{},{} - script TicketRefiner -1,{ OnUsed: set .Mode,0; // Refine mode [ 0 = Refine +1 Each time / 1 = Refine to Max Limit ] set .EquipCheck,1; // Check Equips is refineable or not. [ 0 = Disable / 1 = Enable ] set .MaxRefine,10; // Max Refine Limit set .TicketID,20001; // Ticket ID switch(select( ( getequiprefinerycnt(1) >= .MaxRefine || getequipisequiped(1) == 0 )?"":"Headgear [ ^4EEE94"+getequipname(1)+"^000000 ]", ( getequiprefinerycnt(2) >= .MaxRefine || getequipisequiped(2) == 0 )?"":"Armor [ ^4EEE94"+getequipname(2)+"^000000 ]", ( getequiprefinerycnt(3) >= .MaxRefine || getequipisequiped(3) == 0 )?"":"Left Hand [ ^4EEE94"+getequipname(3)+"^000000 ]", ( getequiprefinerycnt(4) >= .MaxRefine || getequipisequiped(4) == 0 )?"":"Right Hand [ ^4EEE94"+getequipname(4)+"^000000 ]", ( getequiprefinerycnt(5) >= .MaxRefine || getequipisequiped(5) == 0 )?"":"Garment [ ^4EEE94"+getequipname(5)+"^000000 ]", ( getequiprefinerycnt(6) >= .MaxRefine || getequipisequiped(6) == 0 )?"":"Shoes [ ^4EEE94"+getequipname(6)+"^000000 ]", "^FF0000Close^000000")) { Case 1: if ( .Mode == 0 ) { callsub RefineSystem,1; } if ( .Mode == 1 ) { callsub MaxRefineSystem,1; } Case 2: if ( .Mode == 0 ) { callsub RefineSystem,2; } if ( .Mode == 1 ) { callsub MaxRefineSystem,2; } Case 3: if ( .Mode == 0 ) { callsub RefineSystem,3; } if ( .Mode == 1 ) { callsub MaxRefineSystem,3; } Case 4: if ( .Mode == 0 ) { callsub RefineSystem,4; } if ( .Mode == 1 ) { callsub MaxRefineSystem,4; } Case 5: if ( .Mode == 0 ) { callsub RefineSystem,5; } if ( .Mode == 1 ) { callsub MaxRefineSystem,5; } Case 6: if ( .Mode == 0 ) { callsub RefineSystem,6; } if ( .Mode == 1 ) { callsub MaxRefineSystem,6; } Case 7: close; } RefineSystem: if ( .EquipCheck == 1 && getequipisenableref(getarg(0)) == 0 ){ mes "I cant refine this items. Because it is unrefinable."; close; } successrefitem (getarg(0)); message strcharinfo(0),"The Equipments has been refined, Ticket will also removed from your inventory."; delitem .TicketID,1; close; MaxRefineSystem: if ( .EquipCheck == 1 && getequipisenableref(getarg(0)) == 0 ){ mes "I cant refine this items. Because it is unrefinable."; close; } for ( set .@i,getequiprefinerycnt(getarg(0)); getequiprefinerycnt(getarg(0)) < .MaxRefine; set .@i,getequiprefinerycnt(getarg(0)) ){ successrefitem (getarg(0)); } message strcharinfo(0),"The Equipments has been refined, Ticket will also removed from your inventory."; delitem .TicketID,1; close; }
-
Thank you so much Poporing. where can i download the latest git ???
-
-
Please help me how to customize prontera because i want to remove the trees for a better space please help
-
-
im having the same error on job_basehpsp_db.txt i dont know why i didnt do anything on that txt file then suddenly im receiving errors after i change something on item_db.txt pls help us
-
can someone share chibi sprites please