Jump to content

BlackSnow

Members
  • Posts

    32
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

1237 profile views

BlackSnow's Achievements

Poring

Poring (1/15)

0

Reputation

2

Community Answers

  1. I have search some of topics on rathena but I don't seem to get just what exactly happened. [Debug]: npc_scriptcont: Baller Mall (sd->npc_id=110181121) is not 'Unknown NPC' (id=0). Is there anyone to explain and be able to tell me what is going on?
  2. I am getting some errors from the hunting mission. I have taken out the OnBuyItem and the mission points that has a relation to OnBuyItem. Error: [Warning]: Found more arguments than necessary. unexpected arg type C_NAME [Debug]: Function: strmobinfo [Debug]: Source (NPC): Hunting Missions at prontera (150,150) [Warning]: Found more arguments than necessary. unexpected arg type C_NAME [Debug]: Function: strmobinfo [Debug]: Source (NPC): Hunting Missions at prontera (150,150) [Warning]: Found more arguments than necessary. unexpected arg type C_NAME [Debug]: Function: strmobinfo [Debug]: Source (NPC): Hunting Missions at prontera (150,150) [Warning]: Found more arguments than necessary. unexpected arg type C_NAME [Debug]: Function: strmobinfo The script I edited:
  3. You can search on youtube for a step by step guide on changing thor patcher. As for flux go to the download section for free themes: https://rathena.org/board/files/category/20-fluxcp-themes/
  4. Go login into your Admin account. Then go to your item database on the website and select any item. You'll see Add item on the top, just click. There you go.
  5. Are you using 2013+ client? or 2012 and lower? Have you used both iteminfo.lub and itemdb.txt? Example: If that doesn't work I think you missed a step on trying to implement a custom item.
  6. What's your item script? Please show it. There might be something wrong with the unequip and equip script.
  7. I think you'll find all-in-one auto event here: https://github.com/Stolao/Npc_Release/blob/master/Auto_Event/Auto_Event_v1.93.txt
  8. Any new updates for the images?
  9. Tried that still didn't work. http://oi63.tinypic.com/13ynptj.jpg
  10. prontera,150,150,3 itemshop blob1 497,6030:0,507:1,508:2,509:3 prontera,152,152,3 itemshop blob2 497,6031:0,507:1,508:2,509:3 Currency shop1: Glitering_PaperA - 6030 Currency shop2: Glitering_PaperB - 6031 If you want to have 1 NPC for all the shops just use simple switch cases. <map name>,<x>,<y>,<facing>%TAB%itemshop%TAB%<NPC Name>%TAB%<sprite id>,<costitemid>{:<discount>},<itemid>:<price>{,<itemid>:<price>...}
  11. I tested that already and it works fine. The problem is that I want to stop it mid-way while the event is still being announced. LMS_Admin: if (!.Status){ mes "[Minion]"; mes "My master has no invasion planned at the moment. Do you wish to schedule an invasion?"; menu "- Start Event",M_RFYL,"- Spectate",M_warp,"- End Event",M_EndEvent; }else { mes "[Minion]"; mes "My master has no invasion planned at the moment. Do you wish to schedule an invasion?"; menu "- Spectate",M_warp,"- End Event",M_EndEvent; } close; M_RFYL: mes "[Minion]"; mes "Hold on while I call my master."; close2; goto StartEvent; M_warp: mes "[Minion]"; mes "Very well, I will warp you to the map!"; warp "quiz_01",42,369; close; M_EndEvent: mes "[Minion]"; mes "Ok master, I will stop the event for you right away!"; next; set .Status,0; disablenpc "Zombie Master"; disablenpc "Shihiro"; killmonsterall "quiz_01"; areawarp "quiz_01",10,10,450,450,"prontera",156,191; stopnpctimer; announce "END TESTING",0; end; // ========================= StartEvent: //Announcement to notify all players // ========================= set .Status,1; disablenpc "Shihiro"; killmonsterall "quiz_01"; enablenpc "Zombie Master"; announce "Test1!",0; sleep 5000; announce "Test2!",0; sleep 5000; announce "Test3!",0; sleep 5000; announce "Test4!",0; sleep 1000; announce "Zombie Vs. Novice event has now begun!",0; disablenpc "Zombie Master"; http://oi68.tinypic.com/20hws1s.jpg OnTimer0500: // 5 seconds?
  12. Like this 1016 - Skeleton (0/42)". I want a mob id before its name.
×
×
  • Create New...