Jump to content

Imbecile

Members
  • Posts

    48
  • Joined

  • Last visited

Everything posted by Imbecile

  1. Hello. Can someone help me make this NPC, please? I've tried to make this NPC by myself but it's a total disaster. Thank you. https://irowiki.org/wiki/Hero_Ring_Enchants
  2. still not enchanting sir when enchanting armor and shoes, it works fine. when it comes to headgear and manteau, it's not working. what should i do?
  3. ah yes. the error on map server is gone. thank you sir @Cian . but the manteau and the headgear still can't be enchant. what should i do?
  4. hello @Alayne ! this script is great! oh btw, i wanna give you a report about your script 1. whenever i use the enchant option, the map-server showing this 2. whenever i enchant option for the decoration and manteau, it's showing the progress bar, but after it finished, there's no enchant on the equipment please help me fix it mate. and thank you so much for sharing this script for us!
  5. I already change that. Btw i got another error. When i go to morse cave, the warp portal already appear. After i killed the wounded morroc, it's stuck. not warping at all. can you please fix it?
  6. Hello @Alayne . I need your help. Some of the NPC already appear. can you please fix it? i'm using packetver 20170517
  7. Hello @Alayne . I'm excited to use your script! thank you! but i'm trying to use your morse cave instance and here's what i got : what should i do? i'm using rathena PACKETVER 20170517
  8. Hello @Capuche . I'm using your script as my MVP Ranker. But i found something weird. Whenever i killed an MVP, the points raised randomly instead of 1. What should i change to make 1 mvp = 1 point? Thank you. So sorry for the spam question. I thought my connection was bad and my post didn't send. Turns out it goes up. So sorry.
  9. Hello. I'm using your script as my MVP Rank. But i found something odd. Whenever i killed an MVP, the points raised randomly instead of 1. What did i miss? MVPRank.txt
  10. Hello Rathena I'm using this script for my daily login reward. But after achieved day 28, the reward won't reset to day 1. I will got the day 28 reward repeatedly. How to fix it? Thank you EventDailyRewardSystem.txt
  11. okay. i will send it to you. thanks for your help sir
  12. hi @sader1992 . Yes i only re-type the whole script in case that is the problem why the 6011 won't disappear. But i guess i'm wrong. What should i do?
  13. Hello So i use this mining script and i want to edit it so you can use two different items with one npc. the item code is 6010 and 6011. But the delitem only work for ID 6010. the item with ID 6011 are not dissapear. Please help me. Here's the script : if(@mining != 0) goto Lstillmine; if(.mining != 0) goto Lalreadymine; //mes "Do you want to mine this rock?"; //menu "Proceed",-; //next; if(countitem(6010) < 1 && countitem(6011) < 1) goto Lnopick; set @minechance,rand(1,2); //50% chance to obtain Ore set @purechance,rand(1,3); //33.33% chance to obtain an ADDITIONAL mithril, which sells higher set .mining,1; set @mining,1; pcblockmove getcharid(3),1; if(MineLvl == 0) { misceffect 102; //Mining level 0 waits 4 seconds before mining sleep2 1000; misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6010,1; goto Lfail; } } else if(MineLvl == 1) { misceffect 102; //Mining level 1 waits 3 seconds before mining sleep2 1000; misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6010,1; goto Lfail; } } else if(MineLvl == 2) { //Mining level 2 waits 2 seconds before mining misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6010,1; goto Lfail; } } if(MineLvl == 3) { misceffect 102; //Mining level 3 waits 1 second before mining sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6010,1; goto Lfail; } } if(MineLvl == 0) { misceffect 102; //Mining level 0 waits 4 seconds before mining sleep2 1000; misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6011,1; goto Lfail; } } else if(MineLvl == 1) { misceffect 102; //Mining level 1 waits 3 seconds before mining sleep2 1000; misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6011,1; goto Lfail; } } else if(MineLvl == 2) { //Mining level 2 waits 2 seconds before mining misceffect 102; sleep2 1000; misceffect 102; sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6011,1; goto Lfail; } } if(MineLvl == 3) { misceffect 102; //Mining level 3 waits 1 second before mining sleep2 1000; set .mining,0; set @mining,0; pcblockmove getcharid(3),0; if(@minechance == 2) { misceffect 154; set MineExp,MineExp+1; if(@purechance == 3) getitem 32489,2; else getitem 32489,1; goto Lsuccess; } else { misceffect 155; delitem 6011,1; goto Lfail; } }
  14. what about the schg_cas04 map sir? isn't there are no mob in there?
  15. Hi everyone. I want to ask something. Why is on my ragnarok always crash when i go to some map? My crashes map are : schg_cas04 schg_cas05 disc_dun03 etc and many other maps I already check on my grf, there is no .gat file. but, i try to download the latest kro and compare it to my grf, it has no difference. What should i do to fix this? Thanks.
  16. I did. But it still not working. Whenever i want to take the file from the grf out to my files it just blinking white and nothing happen. I already run it as admin but it still not working. What should i do?
  17. Hi everyone. I got the same issue too. My deep sleep lullaby only lasted for 1 - 2 seconds. I think there's an error remembering that lv 5 deep sleep lullaby got effect 20 seconds deep sleep effect. i already check that link above but it still not working. You guys got any idea? Thanks btw.
  18. Hahaha sorry mate. Everytime i'm trying to extract the file inside my grf, i do a right-click, and then extract. Whenever i do that, my grf editor just blinking white and done nothing. Is it error or there's a setting that need to change?
  19. Hi. Can i ask something? My GRF Editor cannot extract the file from grf to my pc. What should i do?
  20. Hi sir! I'm using your script and it's awesome! But i want to make a npc for it. But if i input the atcommand "@claim" in the script, it says @claim is unknown command. How do i fix this? Thanks
  21. dear sir @rakuzas, may i get your dress room script? i don't have that
  22. OH I FOUND THE ISSUE. It become black whenever i'm trying to change the cloth color. But the main issue are whenever i'm trying to change the color, it become black and the color won't change even if i reset the color. And it change to black again whenever i warp to other map or disconnected. It only change if i did this : 1. use @bodystyle 0 2. reset the color to 1 3. use @bodystyle 1 and the color are back Can someone please help me to fix it?
  23. // Limit body styles to certain jobs since not all of them are released yet. if (!((sd->class_&MAPID_THIRDMASK) == MAPID_GUILLOTINE_CROSS || (sd->class_&MAPID_THIRDMASK) == MAPID_GENETIC || (sd->class_&MAPID_THIRDMASK) == MAPID_MECHANIC || (sd->class_&MAPID_THIRDMASK) == MAPID_ROYAL_GUARD || (sd->class_&MAPID_THIRDMASK) == MAPID_ARCH_BISHOP || (sd->class_&MAPID_THIRDMASK) == MAPID_RANGER || (sd->class_&MAPID_THIRDMASK) == MAPID_SORCERER ||(sd->class_&MAPID_THIRDMASK) == MAPID_SURA || (sd->class_&MAPID_THIRDMASK) == MAPID_WARLOCK || (sd->class_&MAPID_THIRDMASK) == MAPID_SHADOW_CHASER || (sd->class_&MAPID_THIRDMASK) == MAPID_MINSTRELWANDERER)) { clif_displaymessage(fd, msg_txt(sd,740)); // This job has no alternate body styles. return -1; }
  24. I already input the following sprite to my grf. But it became like this. Can anyone please help me?
×
×
  • Create New...