Jump to content

Ronald

Members
  • Posts

    250
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by Ronald

  1. Hi Mate, You can check this out.
  2. You can checkout status.cpp.
  3. You can just put announce after or before the getitem part.
  4. https://rathena.org/board/topic/90173-item-and-point-shop/ How about using a pointshop instead of this one? It will be just of same outcome but easier way. Just use single NPC with call function for the pointshop.
  5. Please reproduce. I've already provided you all the details to need to work it the way you wanted. I just gave you an idea on what you have to do. Basically you'll just need to do the dataflow. I can't test it on my emulator at the moment since I am a little bit busy but with all the details I've provided you should have fixed it. ?
  6. Ohh, sorry. Though the logic is just the same. case 2: if ( mobcount( "this", strnpcinfo(3)+"::OnMobDead" ) ) { mes "[MVP Summoner]"; mes "I cannot summon another MVP when there are monsters around."; close; } else if ( .mvpcost ) { mes "[MVP Summoner]"; mes "The cost to summon an MVP is "+ callfunc( "F_InsertComma", .mvpcost ) +" Mithril Coin."; next; set .@menu, select(.mvpid_menu$) -1; mes "[MVP Summoner]"; if (countitem(675) < .mvpcost ) { mes "You don't have enough Mithrils to summon an MVP."; close; } } else { set .@menu, select(.mvpid_menu$) -1; mes "[MVP Summoner]"; } mes "Please get ready."; close2; if (countitem(675) > .mvpcost ) end; delitem 675,1*.mvpcost; monster "this", 0, 0, "--ja--", .mvpid[.@menu], 1, strnpcinfo(3)+"::OnMobDead"; end; case 3: if ( mobcount( "this", strnpcinfo(3)+"::OnMobDead" ) ) { mes "[MVP Summoner]"; mes "I cannot summon another mini-boss when there are monsters around."; close; } else if ( .bosscost ) { mes "[MVP Summoner]"; mes "The cost to summon a mini-boss is "+ callfunc( "F_InsertComma", .bosscost ) +" Mithril Coins."; next; set .@menu, select(.bossid_menu$) -1; mes "[MVP Summoner]"; if (countitem(675) < .bosscost ) { mes "You doesn't have enough Mithrils to summon a mini-boss."; close; } } else { set .@menu, select(.bossid_menu$) -1; mes "[MVP Summoner]"; } mes "Please get ready."; close2; if (countitem(675) > .bosscost ) end; delitem 675,1*.bosscost; monster "this", 0, 0, "--ja--", .bossid[.@menu], 1, strnpcinfo(3)+"::OnMobDead"; end; _____ set .mvpcost, 10; // Zeny cost to summon an MVP (0 = free) set .bosscost, 10; // Zeny cost to summon a boss monster (0 = free) Haven't tried it though. Optimized it if there are any errors since I haven't tested it yet. But it will definitely give you a huge idea on how it should work.
  7. Yes, it's possible. Just change its condition. For example: if (countitem(674) > 10){ { if ( .inuseid[.@room] == getcharid( .type[.@room] ) ) { warp "06guild_0"+ .@room, 0,0; delitem 674,10; close; } else if (countitem(674) < 10) { mes "You don't have enough zeny to rent a room."; } Haven't tried it yet though. I may have deleted some of the parameters but its for you to check out what shouldn't be deleted. I just gave you a brief and example. You just have to change condition of zeny to an item using item count. Good luck!
  8. Anyone experiencing Skill has failed for skills Backsliding and Body Relocation matter upon adding additional warm wind skill on OnEquip script of an item? But when you unequip the item you can use it backsliding and body relocation. TIA! Btw, no error on emulator. >.< So I am having hard time to troubleshoot it.
  9. Your GRF is not up-to-date. Meanwhile if you need the files. I'll provide them here. FYI. Only missing files showed. data.rar
  10. If you still haven't fixed with with Bringer's solution this is also one another way with additional features. ? Very easy to use. You'll just add skill.
  11. From what I know it shouldn't freeze unless you use reloadscript. o.o. Do you find any error btw?
  12. Before having someone's service please always consider checking credibility. It's sad that a Filipino Developer would do that. But a developer and downloader is different. If you're really a developer you wouldn't do that kind of thing because it's your credibility that's in line. Nevertheless I look forward that you'll get a credible one next time! Just my two cent. Sending love from Filipino Developers ?
  13. Sorry for the late response Bro. it depends on your itemscript at item_db.txt as well as with delay you can set it on item_delay.txt.
  14. It would be better if you can provide the whole image of being error. Btw, have you checked this two? https://github.com/rathena/rathena/blob/master/src/map/clif.cpp https://github.com/rathena/rathena/blob/master/src/map/pc.hpp
  15. You're always welcome Man!
  16. Ohh sorry. I was kinda sleepy when I replied to you. This might help you.
  17. OnPCKillEvent: if(strcharinfo(3) != .map$ ) end; I think this will give you an idea already.
  18. data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\make_character_ver2 or data\texture\À¯ÀúÀÎÅÍÆäÀ̽º\make_character
  19. You're always welcome. Happy to be of help!
  20. Use search bar next time mate.
  21. Using search bar is not prohibited.
×
×
  • Create New...