Jump to content

Shio Devs

Members
  • Posts

    135
  • Joined

  • Last visited

Everything posted by Shio Devs

  1. What's the error can you provide more about this? how is anyone going to know how to help..lol
  2. i got mine working, just have to edit the sql.
  3. Are your server login and passwd set in Phpadmin login table?
  4. Try this.. mellina,82,40,4 script Master Artisan 520,{ mes .npc$; mes "Hi, and wellcome! the name's ^0000FFIraciz^000000, the Master Artisan."; mes "In my whole life, I have spent a lot of time studying how to enhance the powers of the Top Gears."; next; mes .npc$; mes "and my skill allow me to upgrade the hat with a mysterious ^32cd32+1 Stat^000000 to any equipped upper gear."; next; mes .npc$; mes "If you wish my service, with non failure guarantees."; mes "you need to give me something in exchange:"; mes "^cc00cc"+.price+" "+((.price-1)?getitemname(.item)+"s":getitemname(.item))+"^000000."; next; if(!countitem(.item)){ mes .npc$; mes "Hey, you?! Don't even have ^cc00cc"+getitemname(.item)+"s^000000 in your inventory."; close; } if(select("^FF9900Enchant Upper Gear^000000:^FF0000No Thanks^000000")&2){ mes .npc$; mes "I understand, nevermind!."; close; } if(countitem(.item)<.price) { mes .npc$; mes "I'm so sorry, you don't have enough ^cc00cc"+getitemname(.item)+"s^000000 to pay in order to enchant your Upper Gear."; mes "Come back when you have the exactly amount I require."; close; } mes .npc$; mes "This may be your best choice ever."; next; specialeffect 96; progressbar "ffff00",2; if(getequipid(9)+1) { // Change this to 10 if you want for lower. delitem .item,.price; set .@id, getequipid(9); // Also change this into 10 for lower. set .@ref, getequiprefinerycnt(1); set .@card1, getequipcardid(1,0); set .@card2, getequipcardid(1,1); set .@card3, getequipcardid(1,2); set .@card4, getequipcardid(1,3); delitem2 .@id, 1, 1, .@ref, 0, .@card1, .@card2, .@card3, .@card4; getitem2 .@id, 1, 1, .@ref, 0, .@card1, .@card2, .@card3, callfunc("F_RandMes", 6, 4700, 4710, 4720, 4730, 4740, 4750); equip .@id; specialeffect2 154; mes .npc$; mes "Congratz, the enchant has been succesfully applied!."; close; } mes .npc$; mes "eh eh ehhh! Wait a second"; mes "Are you nutz? I can't insert an enchant inside your bare head with my hammer!."; mes "You nedd to have an Upper Gear equiped, in order to enchant it."; close; // Item required and amount OnInit: set .npc$, "^660066Iraciz^000000"; set .price, 150; set .item, 7539; } Let me know how it works!
  5. Change the Version in your clientinfo.xml to 45. Regarding the @item and npc etc. Did you install correctly?
  6. So no commands are working, Mobs have no drops, and when you try to buy something from local tool dealers, it disconnects me. Any ideas on a fix for this? i've just recently changed from hercules to rAthena. Fresh sql files. Any support would be great.
  7. Did you ever solve the issue? i'm having the same one right now.
  8. What exactly are you asking? Could you provide a more clear question please,
  9. Just installing the latest GIT, and came across this error. Error SQL query: #REPLACE INTO `mob_skill_db` VALUES (1646,'Lord Knight Seyren@KN_BOWLINGBASH','attack',62,10,1000,0,10000,'yes','target','always','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL); #REPLACE INTO `mob_skill_db` VALUES (1646,'Lord Knight Seyren@KN_BOWLINGBASH','attack',62,10,2000,0,0,'yes','target','myhpltmaxrate','30',NULL,NULL,NULL,NULL,NULL,NULL,NULL); REPLACE INTO `mob_skill_db` VALUES ( 1646, 'Lord Knight Seyren@SM_BASH', 'attack', 5, 10, 1000, 0, 5000, 'yes', 'target', 'always', '0', NULL , NULL , NULL , NULL , NULL , NULL , NULL ) ; MySQL said: Documentation #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'REPLACE INTO `mob_skill_db` VALUES (1646,'Lord Knight Seyren@SM_BASH','attack',5' at line 4 Any confirms? or am i just blind? haha
  10. Hm you can add it to the mob_db or use something like this http://rathena.org/board/topic/69225-help-me-with-this-script/
  11. My apologies then, hmm give me a bit, i'll whip something up.
  12. Prince this topic has already been discussed, Search is your best tutor ever. You can't do it with just script, you need some sql in there too. Check the link for more info. http://rathena.org/board/topic/57869-guild-level-check/
  13. OMG, it will also refine including those items that are not allowed to be refine like: ACCESSORIES and COSTUMES So your looking for and all item refiner? Here is one from Rikimaru. Searching never hurts Link : http://pastebin.com/RQkvaSRq
  14. Could you please provide a better explanation? I'm not sure what your asking. IF your bad with english try google translate.
  15. Here's and old script i used to use. prontera,164,195,5 script PvP Warper 468,{ mes "[^0055FFPvP Warper^000000]"; mes "Do you want to enter the PvP Rooms and battle your enemies?"; menu "Sure, Let's go!",L_Yes,"No thanks, I'm not ready yet.",L_No; L_Yes: mes "[^0055FFPvP Warper^000000]"; mes "Which PvP Arena do you want to enter?"; menu "PvP Sandwich [" + getmapusers("pvp_n_1-1") + " / 20]",L1, "PvP Izlude [" + getmapusers("pvp_y_1-2") + " / 20]",L2, "PvP Arena [" + getmapusers("guild_vs3") + " / 20]",L3, "PvP Free For All [" + getmapusers("pvp_y_2-2") + " / 20]",L4, "PvP Third Job [" + getmapusers("guild_vs4") + " / 20]",L5; L1: if (getmapusers("guild_vs2") > 20) goto Lsorry; warp "pvp_n_1-1",0,0; close; L2: if (getmapusers("guild_vs3") > 20) goto Lsorry; warp "pvp_y_1-1",0,0; close; L3: if (getmapusers("guild_vs4") > 20) goto Lsorry; warp "guild_vs3",0,0; close; L4: if (getmapusers("guild_vs4") > 20) goto Lsorry; warp "pvp_y_2-2",0,0; close; L5: if (getmapusers("guild_vs4") > 20) goto Lsorry; warp "guild_vs4",0,0; close; Lsorry: mes "[^0055FFPvP Warper^000000]"; mes "Sorry but this PvP Arena is full, Please select another PvP Room"; close; L_No: close; }
  16. So whats your current svn? Are you applying these as patches? or just paste the code?
  17. Okay here is a few things we need to check, Is your kRO up to date? is your RO folder complete? Did you edit anything with your Lua? Are you using Read Data Folder first? Is your data folder using lua / lubs? Have you done any skill editing? Are you compiled with Renewal?
  18. So i was playing with my src folder and happened to find somethings for backslide animation. I'm not sure if this 100% safe, but its working fine no errors on my server. So i thought id share it, I do not recommend this if you don't know what your doing. Please make a backup as this may be different for you. In cliff.c Find the line 1997 Or if it's different for your svn, search the text below. void clif_blown(struct block_list *bl) //FIXME: This needs a better behaviour than just sending 2 position fixes { clif_fixpos(bl); } void clif_blown_slide(struct block_list *bl) { clif_slide(bl, bl->x, bl->y); void clif_fixpos(struct block_list *bl) Replace with: void clif_blown(struct block_list *bl) { // clif_fixpos(bl); clif_slide(bl, bl->x, bl->y); } void clif_fixpos(struct block_list *bl) Save, Recompile and test it out! please report any errors, leave some feedback...
  19. Did you recompile? How did you apply the code? Please provide more info on these posts D;
×
×
  • Create New...