Jump to content

Skorm

Forum Moderator
  • Posts

    1282
  • Joined

  • Last visited

  • Days Won

    41

Everything posted by Skorm

  1. Download TK Patcher from the downloads section throw it in your client backup iteminfo.lub in the system folder if you're client is using it and patch!
  2. Masao only added the town NPCs, nothing else (it's under 20% complete). I'd suggest using the version on rAthena, because I corrected all the bugs in Masao's script and optimized it.trunk/npc/re/cities/malaya.txt / trunk/npc/re/quests/quests_malaya.txt Harrsh, Euphy!!
  3. Thank you guys very much for this- ALL VERY GOOD ANSWERS!!! But the problem now is that I want to add all of them (HAHAHA This will take some time)!
  4. Alright just remember to backup your old luas just incase.
  5. Let me... be your paladin!

    1. Nameless2you

      Nameless2you

      Royal Guard plox?

  6. I'm not really sure I can't remember but I think I just mixed and matched the two sources based on size and made a few manual modifications. http://www.mediafire.com/?xiud5ag87tquyjh I do have one custom mod but I think thats only in the stats_icon folder. The only other thing I can do is give you the sources I used. http://krotranslatedlua.googlecode.com/svn/trunk/ http://subversion.assembla.com/svn/ClientSide/Lua_Project/ Hope this helps.
  7. Hello Good People, I'd like to attribute stats, bonuses, equipment, headgears, etc without consuming equipment slots. I've spent quite some time looking through old posts, and found all kinds of goodies that I'm eager to add, but this item alludes me- I know it's out there! Please explain how to do this . My main point of interest is giving the character an item effect without the item taking up equipment slots. I was thinking about using the costume page but I'm not really sure how to use that either and I don't know if the item effects work there. Any help would be nice.
  8. Make sure you're diffing your client with the [FIX] Skip Packet Header Obsfucation, and it's always good practice to update your packet_db.txt located in your trunk/db folder; you can download it here http://svn.code.sf.net/p/rathena/svn/trunk/db/packet_db.txt. In packet_db switch the version back to default. After you've finished all of that Open: src/map/clif.h and make the following changes. MAX_PACKET_DB = 0xf00, MAX_PACKET_VER = 34, MAX_PACKET_POS = 20, In src/common/mmo.h #define PACKETVER 20120503 Recompile your server these are the exact steps I used to fix a similar problem hope that helps goodluck. Edit: On some of the older clients Skip Packet Header wasn't showing up with the first revision here is a version 2 download http://sourceforge.net/projects/atwl/files/WeeDiffGen/WDGSkipPacketHeaderObfuscation.R2.dll/download Again good luck
  9. I wasn't really sure where to post this because it deals with client, source, and database, but I figured the source community would be of the most assistance. Here is a high-quality image of what I think the problem is... http://skorm.picturepush.com/showformat.php?format=imgℑ=13180305 I'm being rejected when trying to enter the mapserver from charselect. I've already tested the RagexeRE 20120612 client that isn't from harmony and that works fine on the latest rAthena revision that doesn't have harmony installed. Harmony is using 20070207 spoofed to 20120612 does that mean I'm missing packets for 2007? I've spent some time looking for a suitable solution for this problem. Updating my revision won't work because I already have the newest version. I was wondering if there is a way to add an exception for 0x0ed3 length 19? Before you ask, I've already contacted the good people at harmony and they're taking their sweet time! Any assistance at all is appreciated if you think I've posted this in the wrong section and have the power please move it. I was able to slove my problem
  10. Yes, I've been here looking at my terminal, off and on, for well over 2 hours- No disconnects!
  11. Hi, Joe. - script Dead -1,{ OnPCDieEvent: dispbottom "You have been killed by a "+((getmonsterinfo(killerrid,0)=="Dummy")?"Player":"Monster")+"."; end; } I'm just going by what http://ea.dj-yhn.com/index.php?c=getmonsterinfo says I haven't actually tested this before so script is untested.
  12. if( (sfd = make_connection(host2ip("stats.rathena.org"),(uint16)25421,true,10) ) == -1 ) { Lol the more you know! I installed the modifications and replaced stats.rathena.org with localhost to test... uhm seems to be working fine. Thanks Akinari and fresh prince. Edit: If you're having this problem on an older version of rAthena and you don't want to update. You only need modify these files. Where + is add the line and - is remove the line. trunk/src/common/socket.h // Function prototype declaration int make_listen_bind(uint32 ip, uint16 port); -int make_connection(uint32 ip, uint16 port, bool silent); +int make_connection(uint32 ip, uint16 port, bool silent, int timeout); int realloc_fifo(int fd, unsigned int rfifo_size, unsigned int wfifo_size); int realloc_writefifo(int fd, size_t addition); int WFIFOSET(int fd, size_t len); trunk/src/map/chrif.c } chrif_state = 0; - char_fd = make_connection(char_ip, char_port,false); + char_fd = make_connection(char_ip, char_port,false,10); if (char_fd == -1)//Attempt to connect later. [Skotlex] return 0; trunk/src/char/char.c int sfd;/* stat server fd */ RFIFOSKIP(fd, 2);/* we skip first 2 bytes which are the 0x3008, so we end up with a buffer equal to the one we send */ - if( (sfd = make_connection(host2ip("stats.rathena.org"),(uint16)25421,true) ) == -1 ) { + if( (sfd = make_connection(host2ip("stats.rathena.org"),(uint16)25421,true,10) ) == -1 ) { RFIFOSKIP(fd, RFIFOW(fd,2) );/* skip this packet */ break;/* connection not possible, we drop the report */ } return 0; ShowInfo("Attempt to connect to login-server...\n"); - login_fd = make_connection(login_ip, login_port, false); + login_fd = make_connection(login_ip, login_port, false,10); if (login_fd == -1) { //Try again later. [Skotlex] login_fd = 0; trunk/src/common/socket.c-void setsocketopts(int fd) -{ - struct timeval timeout; +void setsocketopts(int fd,int delay_timeout){ int yes = 1; // reuse fix - timeout.tv_sec = 10; - timeout.tv_usec = 0; #if !defined(WIN32) // set SO_REAUSEADDR to true, unix only. on windows this option causesMy server didn't have a lot of this so I just replaced the void. opt.l_linger = 0; // Do not care if( sSetsockopt(fd, SOL_SOCKET, SO_LINGER, (char*)&opt, sizeof(opt)) ) ShowWarning("setsocketopts: Unable to set SO_LINGER mode for connection #%d!\n", fd); + } + if(delay_timeout){ + struct timeval timeout; + timeout.tv_sec = delay_timeout; + timeout.tv_usec = 0; + + if (sSetsockopt (fd, SOL_SOCKET, SO_RCVTIMEO, (char *)&timeout,sizeof(timeout)) < 0) + ShowError("setsocketopts: Unable to set SO_RCVTIMEO timeout for connection #%d!\n"); + if (sSetsockopt (fd, SOL_SOCKET, SO_SNDTIMEO, (char *)&timeout,sizeof(timeout)) < 0) + ShowError("setsocketopts: Unable to set SO_SNDTIMEO timeout for connection #%d!\n"); } } return -1; } - setsocketopts(fd); + setsocketopts(fd,0); set_nonblocking(fd, 1); #ifndef MINICORE return -1; } - setsocketopts(fd); + setsocketopts(fd,0); set_nonblocking(fd, 1); server_address.sin_family = AF_INET; return fd; } -int make_connection(uint32 ip, uint16 port, bool silent) { +int make_connection(uint32 ip, uint16 port, bool silent,int timeout) { struct sockaddr_in remote_address; int fd; int result; return -1; } - setsocketopts(fd); + setsocketopts(fd,timeout); remote_address.sin_family = AF_INET; remote_address.sin_addr.s_addr = htonl(ip);This for me was actually the Setsocketopts above make_connection.
  13. You might be having the same problem most of us seem to be having I'll redirect you to http://rathena.org/board/topic/80364-char-server-keeps-disconnecting-from-map-server/ .
  14. Alright so because rathena is back (finally!). I'd like to update this problem slightly: The server thinks it's being DoSS by the login server and rejects it. Simi-fix: In conf/packet_athena.conf //----- IP Rules Settings ----- // If IP's are checked when connecting. // This also enables DDoS protection. // Default yes enable_ip_rules: yes Change enable_ip_rules: no This will disable DoSS protection allowing the char server to reconnect much faster! Why it is disconnecting on localhost is still a mystery. Notes: I really feel like some part of the revision we're using through rA connects back to their servers. Like a status-check or perhaps a kill switch (maybe they're gathering miscellaneous information and it isn't rerouting correctly)? I mean why else would everyone be having this same problem while rAthena just happens to go down... I even went so far to contact my server provider about the problem.
  15. Same here my server is configured correctly EVERYTHING working perfectly not a single error and now this! What is going on!? Edit: My server has been working flawlessly for the past few months. If this helps at all this is what happends when I try to login. Terminal Log
  16. They didn't seem to work for me I'm using 2012-07-16aRagexeRE. ItemInfo.lub is located in the System folder in your clients RO directory the only problem I see with that is when updating sometimes KRO patches replace it, that's why I always have backups. xD
  17. First I'd just like to say thanks, Aerie, you're an angel, thank you for releasing all this content "FOR FREE!" really it's hard to wrap my head around, but thank you! So I want to help you a little in anyway I can. Small typo on line 213 unless I did that on accident but I don't think I touched it xD. Elu.txt donpcevent "Tombe#ep8ac::OnBack";should bedonpcevent "Tombe#ep8c::OnBack";Also for newer clients I made my own itemInfo.lub if you want you can use mine I changed some of the item icons though because I couldn't copy and paste the information. Thanks and goodluck. [29084] = { unidentifiedDisplayName = "Maritime Map of Coppalana Archipelago", unidentifiedResourceName = "ºûÀÇÁÖ¹®¼­", unidentifiedDescriptionName = { "^777777Maritime Map of Coppalana Archipelago^000000", "This card allows you to navigate in the waters of Coppalana.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Maritime Map of Coppalana Archipelago", identifiedResourceName = "ºûÀÇÁÖ¹®¼­", identifiedDescriptionName = { "^777777Maritime Map of Coppalana Archipelago^000000", "This card allows you to navigate in the waters of Coppalana.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29085] = { unidentifiedDisplayName = "Maritime Map of Brynnlaw Islands", unidentifiedResourceName = "ºûÀÇÁÖ¹®¼­", unidentifiedDescriptionName = { "^777777Maritime Map of Brynnlaw Islands^000000", "This card allows you to navigate in the waters of Brynnlaw.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Maritime Map of Brynnlaw Islands", identifiedResourceName = "ºûÀÇÁÖ¹®¼­", identifiedDescriptionName = { "^777777Maritime Map of Brynnlaw Islands^000000", "This card allows you to navigate in the waters of Brynnlaw.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29086] = { unidentifiedDisplayName = "Maritime Map of Schallmar Islands", unidentifiedResourceName = "ºûÀÇÁÖ¹®¼­", unidentifiedDescriptionName = { "^777777Maritime Map of Schallmar Islands^000000", "This card allows you to navigate in the waters of Schallmar.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Maritime Map of Schallmar Islands", identifiedResourceName = "ºûÀÇÁÖ¹®¼­", identifiedDescriptionName = { "^777777Maritime Map of Schallmar Islands^000000", "This card allows you to navigate in the waters of Schallmar.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29090] = { unidentifiedDisplayName = "Treasure Map n°1", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°1^000000", "The map shows a pearl.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°1", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°1^000000", "The map shows a pearl.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29091] = { unidentifiedDisplayName = "Treasure Map n°2", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°2^000000", "The map shows the Tibérine Monastery.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°2", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°2^000000", "The map shows the Tibérine Monastery.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29092] = { unidentifiedDisplayName = "Treasure Map n°3", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°3^000000", "The map shows Gwened Caves.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°3", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°3^000000", "The map shows Gwened Caves.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29093] = { unidentifiedDisplayName = "Treasure Map n°4", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°4^000000", "The map shows the Jacamar Twins.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°4", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°4^000000", "The map shows the Jacamar Twins.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29094] = { unidentifiedDisplayName = "Treasure Map n°5", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°5^000000", "The map shows Gwened Caves.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°5", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°5^000000", "The map shows Gwened Caves.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29095] = { unidentifiedDisplayName = "Treasure Map n°6", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°6^000000", "The map shows Fortress of the Defense.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°6", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°6^000000", "The map shows Fortress of the Defense.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29096] = { unidentifiedDisplayName = "Treasure Map n°7", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°7^000000", "The map shows Coppalana Archipelago.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°7", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°7^000000", "The map shows Coppalana Archipelago.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29097] = { unidentifiedDisplayName = "Treasure Map n°8", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°8^000000", "The map shows Tibérine Monastery.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°8", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°8^000000", "The map shows Tibérine Monastery.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29098] = { unidentifiedDisplayName = "Treasure Map n°9", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°9^000000", "The map shows Dragon Island.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°9", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°9^000000", "The map shows Dragon Island.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29099] = { unidentifiedDisplayName = "Treasure Map n°10", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°10^000000", "The map shows the City of ArsinoEbut it doesn't look like the actual one ...", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°10", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°10^000000", "The map shows the City of ArsinoEbut it doesn't look like the actual one ...", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29100] = { unidentifiedDisplayName = "Treasure Map n°11", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°11^000000", "The map shows Iawah Islands.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°11", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°11^000000", "The map shows Iawah Islands.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29101] = { unidentifiedDisplayName = "Treasure Map n°12", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°12^000000", "The map shows Schallmar City.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°12", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°12^000000", "The map shows Schallmar City.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29102] = { unidentifiedDisplayName = "Treasure Map n°13", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°13^000000", "The map shows Ar Gwez Boel.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°13", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°13^000000", "The map shows Ar Gwez Boel.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29103] = { unidentifiedDisplayName = "Treasure Map n°14", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°14^000000", "The map shows Menez Mikael ar Mor.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°14", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°14^000000", "The map shows Menez Mikael ar Mor.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29104] = { unidentifiedDisplayName = "Treasure Map n°15", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°15^000000", "The map shows Menez Mikael ar Mor.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°15", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°15^000000", "The map shows Menez Mikael ar Mor.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29105] = { unidentifiedDisplayName = "Treasure Map n°16", unidentifiedResourceName = "¼Òȯ¼­_Ȱ", unidentifiedDescriptionName = { "^777777Treasure Map n°16^000000", "The map shows Jacamar Woods.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Treasure Map n°16", identifiedResourceName = "¼Òȯ¼­_Ȱ", identifiedDescriptionName = { "^777777Treasure Map n°16^000000", "The map shows Jacamar Woods.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29120] = { unidentifiedDisplayName = "Black Pearl n°1", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°1^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°1", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°1^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29121] = { unidentifiedDisplayName = "Black Pearl n°2", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°2^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°2", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°2^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29122] = { unidentifiedDisplayName = "Black Pearl n°3", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°3^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°3", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°3^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29123] = { unidentifiedDisplayName = "Black Pearl n°4", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°4^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°4", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°4^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29124] = { unidentifiedDisplayName = "Black Pearl n°5", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°5^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°5", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°5^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29125] = { unidentifiedDisplayName = "Black Pearl n°6", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°6^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°6", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°6^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29126] = { unidentifiedDisplayName = "Black Pearl n°7", unidentifiedResourceName = "¸¶·Â¼®_°ËÁ¤", unidentifiedDescriptionName = { "^777777Black Pearl n°7^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Black Pearl n°7", identifiedResourceName = "¸¶·Â¼®_°ËÁ¤", identifiedDescriptionName = { "^777777Black Pearl n°7^000000", "This is one of the seven pearls Shinaere.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29130] = { unidentifiedDisplayName = "Spore of Blue Mush", unidentifiedResourceName = "¹ö¼¸Æ÷ÀÚ", unidentifiedDescriptionName = { "^777777Spore of Blue Mush^000000", "Spore of Blue Mush are really rare.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Spore of Blue Mush", identifiedResourceName = "¹ö¼¸Æ÷ÀÚ", identifiedDescriptionName = { "^777777Spore of Blue Mush^000000", "Spore of Blue Mush are really rare.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29131] = { unidentifiedDisplayName = "Saintale's Wood", unidentifiedResourceName = "¿ËÀÌ", unidentifiedDescriptionName = { "^777777Saintale's Wood^000000", "This wood is rare and can be only found in the islands of Jacamar.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Saintale's Wood", identifiedResourceName = "¿ËÀÌ", identifiedDescriptionName = { "^777777Saintale's Wood^000000", "This wood is rare and can be only found in the islands of Jacamar.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29132] = { unidentifiedDisplayName = "Philtre of Koweitel", unidentifiedResourceName = "µ¶_¿ôÀ½¹ö¼¸", unidentifiedDescriptionName = { "^777777Philtre of Koweitel^000000", "The Potion of Koweitel mutants will allow the caves Gwened recouver to human.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Philtre of Koweitel", identifiedResourceName = "µ¶_¿ôÀ½¹ö¼¸", identifiedDescriptionName = { "^777777Philtre of Koweitel^000000", "The Potion of Koweitel mutants will allow the caves Gwened recouver to human.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29133] = { unidentifiedDisplayName = "Cortès oil", unidentifiedResourceName = "±â¸§º´", unidentifiedDescriptionName = { "^777777Oil of Cortès^000000", "This oil allows you to use the crane of your ship.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Cortès oil", identifiedResourceName = "±â¸§º´", identifiedDescriptionName = { "^777777Oil of Cortès^000000", "This oil allows you to use the crane of your ship.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29134] = { unidentifiedDisplayName = "Cortès detector", unidentifiedResourceName = "ij½Ã»óÀÚ_°ËÁ¤", unidentifiedDescriptionName = { "^777777Cortès Detector^000000", "You need to keep you on the detector to display the treasures of the sea.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Cortès detector", identifiedResourceName = "ij½Ã»óÀÚ_°ËÁ¤", identifiedDescriptionName = { "^777777Cortès Detector^000000", "You need to keep you on the detector to display the treasures of the sea.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29140] = { unidentifiedDisplayName = "Seal of Coppalana Archipelago", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Coppalana Archipelago^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Coppalana Archipelago", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Coppalana Archipelago^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29141] = { unidentifiedDisplayName = "Seal de Pearl Island", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal de Pearl Island^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal de Pearl Island", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal de Pearl Island^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29142] = { unidentifiedDisplayName = "Seal of Hôtel du Croizic", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Hôtel du Croizic^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Hôtel du Croizic", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Hôtel du Croizic^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29143] = { unidentifiedDisplayName = "Seal of Brynnlaw", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Brynnlaw^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Brynnlaw", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Brynnlaw^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29144] = { unidentifiedDisplayName = "Seal of Jacamar Twins", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Jacamar Twins^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Jacamar Twins", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Jacamar Twins^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29145] = { unidentifiedDisplayName = "Seal of Comptoir Mascate", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Comptoir Mascate^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Comptoir Mascate", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Comptoir Mascate^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29146] = { unidentifiedDisplayName = "Seal of Spices Island", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Spices Island^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Spices Island", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Spices Island^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29147] = { unidentifiedDisplayName = "Seal of Tibérine Monastery", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Tibérine Monastery^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Tibérine Monastery", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Tibérine Monastery^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29148] = { unidentifiedDisplayName = "Seal of Fortress of the Defense", unidentifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", unidentifiedDescriptionName = { "^777777Seal of Fortress of the Defense^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Seal of Fortress of the Defense", identifiedResourceName = "·é½ºÅæ_¾ÆÀÌ»þ", identifiedDescriptionName = { "^777777Seal of Fortress of the Defense^000000", "This is one of the seals that Cortes research.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29150] = { unidentifiedDisplayName = "Rune of Ta", unidentifiedResourceName = "·é½ºÅæ_¿¡À̽ø£", unidentifiedDescriptionName = { "^777777Rune of Ta^000000", "This is a magical rune.", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Rune of Ta", identifiedResourceName = "·é½ºÅæ_¿¡À̽ø£", identifiedDescriptionName = { "^777777Rune of Ta^000000", "This is a magical rune.", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29151] = { unidentifiedDisplayName = "Manganite", unidentifiedResourceName = "°ËÁ¤½¡", unidentifiedDescriptionName = { "^777777Manganite^000000", "Material used as fuel.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Manganite", identifiedResourceName = "°ËÁ¤½¡", identifiedDescriptionName = { "^777777Manganite^000000", "Material used as fuel.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29152] = { unidentifiedDisplayName = "Rune of Chimay", unidentifiedResourceName = "·éÀÇ¿ø¼®_ÀϹÝ", unidentifiedDescriptionName = { "^777777Rune of Chimay^000000", "This is a magical rune.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Rune of Chimay", identifiedResourceName = "·éÀÇ¿ø¼®_ÀϹÝ", identifiedDescriptionName = { "^777777Rune of Chimay^000000", "This is a magical rune.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29153] = { unidentifiedDisplayName = "Rune of Orval", unidentifiedResourceName = "·é½ºÅæ_Æä¸£¾²", unidentifiedDescriptionName = { "^777777Rune of Orval^000000", "This is a magical rune.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Rune of Orval", identifiedResourceName = "·é½ºÅæ_Æä¸£¾²", identifiedDescriptionName = { "^777777Rune of Orval^000000", "This is a magical rune.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29154] = { unidentifiedDisplayName = "Scalp of Pirate", unidentifiedResourceName = "½Å±âÇѸ޴Þ", unidentifiedDescriptionName = { "^777777Scalp of Pirate^000000", "The Pirate scalp is the symbol of your bravery.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Scalp of Pirate", identifiedResourceName = "½Å±âÇѸ޴Þ", identifiedDescriptionName = { "^777777Scalp of Pirate^000000", "The Pirate scalp is the symbol of your bravery.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29155] = { unidentifiedDisplayName = "Solinari's roc", unidentifiedResourceName = "ÇöÀÚÀǵ¹", unidentifiedDescriptionName = { "^777777Solinari's roc^000000", "This rock comes from one of three moons, the Solinari one.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Solinari's roc", identifiedResourceName = "ÇöÀÚÀǵ¹", identifiedDescriptionName = { "^777777Solinari's roc^000000", "This rock comes from one of three moons, the Solinari one.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29156] = { unidentifiedDisplayName = "Luggage of Croizic", unidentifiedResourceName = "¹«ÇѰ¡Á×ÁÖ¸Ó´Ï", unidentifiedDescriptionName = { "^777777Luggage of Croizic^000000", "Holidaymakers from the hotel's Croizic lost their luggage during the attacks of pirates.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Luggage of Croizic", identifiedResourceName = "¹«ÇѰ¡Á×ÁÖ¸Ó´Ï", identifiedDescriptionName = { "^777777Luggage of Croizic^000000", "Holidaymakers from the hotel's Croizic lost their luggage during the attacks of pirates.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29157] = { unidentifiedDisplayName = "Huge Pearl", unidentifiedResourceName = "ºÐÈ«»öº¸¼®", unidentifiedDescriptionName = { "^777777Huge Pearl^000000", "This pearl is huge and has a cost like its weight!", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Huge Pearl", identifiedResourceName = "ºÐÈ«»öº¸¼®", identifiedDescriptionName = { "^777777Huge Pearl^000000", "This pearl is huge and has a cost like its weight!", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29158] = { unidentifiedDisplayName = "Cocked Filibuster", unidentifiedResourceName = "½ºÆÐ³Ê", unidentifiedDescriptionName = { "^777777Cocked Filibuster^000000", "You must fit this object to be able to attack ships.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Cocked Filibuster", identifiedResourceName = "½ºÆÐ³Ê", identifiedDescriptionName = { "^777777Cocked Filibuster^000000", "You must fit this object to be able to attack ships.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 105 }, [29159] = { unidentifiedDisplayName = "Gong Mallet", unidentifiedResourceName = "¼º³É", unidentifiedDescriptionName = { "^777777Gong Mallet^000000", "This is a mallet in gold.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Gong Mallet", identifiedResourceName = "¼º³É", identifiedDescriptionName = { "^777777Gong Mallet^000000", "This is a mallet in gold.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29160] = { unidentifiedDisplayName = "Vision of Gold", unidentifiedResourceName = "õ»çÀÇÀ¯·É", unidentifiedDescriptionName = { "^777777Vision of Gold^000000", "This object allows you to view the probable positions of the treasures on the islands of Schallmar.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Vision of Gold", identifiedResourceName = "õ»çÀÇÀ¯·É", identifiedDescriptionName = { "^777777Vision of Gold^000000", "This object allows you to view the probable positions of the treasures on the islands of Schallmar.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 394 }, [29161] = { unidentifiedDisplayName = "Fiber Mushroom", unidentifiedResourceName = "¼ØÅÐ", unidentifiedDescriptionName = { "^777777Fiber Mushroom^000000", "Mented or even privatized fiber that can be very strong.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Fiber Mushroom", identifiedResourceName = "¼ØÅÐ", identifiedDescriptionName = { "^777777Fiber Mushroom^000000", "Mented or even privatized fiber that can be very strong.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29162] = { unidentifiedDisplayName = "Tissue Mycetozoa", unidentifiedResourceName = "¼ºÀÚÀÇ¿ÊÁ¶°¢", unidentifiedDescriptionName = { "^777777Tissue Mycetozoa^000000", "The Mycetozoa fabric is light and strength rare. Very useful to build strong, lightweight shields.", "^ffffff_^000000", "Weight : ^7777771^000000", }, identifiedDisplayName = "Tissue Mycetozoa", identifiedResourceName = "¼ºÀÚÀÇ¿ÊÁ¶°¢", identifiedDescriptionName = { "^777777Tissue Mycetozoa^000000", "The Mycetozoa fabric is light and strength rare. Very useful to build strong, lightweight shields.", "^ffffff_^000000", "Weight : ^7777771^000000", }, slotCount = 0, ClassNum = 0 }, [29170] = { unidentifiedDisplayName = "Helm of the Champion", unidentifiedResourceName = "º¹°¢½´¹ÌÃ÷ÀÇÅõ±¸", unidentifiedDescriptionName = { "^777777Helm of the Champion^000000", "Helm of Heroes. Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Helm of the Champion", identifiedResourceName = "º¹°¢½´¹ÌÃ÷ÀÇÅõ±¸", identifiedDescriptionName = { "^777777Helm of the Champion^000000", "Helm of Heroes. Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 510 }, [29171] = { unidentifiedDisplayName = "Veridict-Vision", unidentifiedResourceName = "»çÀ̱׷éÀdz¯°³", unidentifiedDescriptionName = { "^777777Veridict-Vision^000000", "Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777Mid^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Veridict-Vision", identifiedResourceName = "»çÀ̱׷éÀdz¯°³", identifiedDescriptionName = { "^777777Veridict-Vision^000000", "Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777Mid^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 568 }, [29172] = { unidentifiedDisplayName = "Catnip", unidentifiedResourceName = "ÆøÅº¹ö¼¸Æ÷ÀÚ", unidentifiedDescriptionName = { "^777777Catnip^000000", "Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777Low^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Catnip", identifiedResourceName = "ÆøÅº¹ö¼¸Æ÷ÀÚ", identifiedDescriptionName = { "^777777Catnip^000000", "Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777Low^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 383 }, [29173] = { unidentifiedDisplayName = "Scourge of the Gods", unidentifiedResourceName = "¾Ó±×¶ó¸¶ÀÌ´º", unidentifiedDescriptionName = { "^777777Scourge of the Gods^000000", "Its powers are mysterious.", "Type : ^777777Armor^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Scourge of the Gods", identifiedResourceName = "¾Ó±×¶ó¸¶ÀÌ´º", identifiedDescriptionName = { "^777777Scourge of the Gods^000000", "Its powers are mysterious.", "Type : ^777777Armor^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 3, ClassNum = 8 }, [29174] = { unidentifiedDisplayName = "Parade of Harpocrates", unidentifiedResourceName = "¾Ë½´Çǽº", unidentifiedDescriptionName = { "^777777Parade of Harpocrates^000000", "Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Parade of Harpocrates", identifiedResourceName = "¾Ë½´Çǽº", identifiedDescriptionName = { "^777777Parade of Harpocrates^000000", "Its powers are mysterious.", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 3 }, [29175] = { unidentifiedDisplayName = "Veil of Danifae", unidentifiedResourceName = "¾Æ»ç¶ó¿äÁ¤¸ðÀÚ", unidentifiedDescriptionName = { "^777777Veil of Danifae^000000", "Its powers are mysterious.", "Type : ^777777Garment^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Veil of Danifae", identifiedResourceName = "¾Æ»ç¶ó¿äÁ¤¸ðÀÚ", identifiedDescriptionName = { "^777777Veil of Danifae^000000", "Its powers are mysterious.", "Type : ^777777Garment^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 0 }, [29176] = { unidentifiedDisplayName = "Seven League Boots", unidentifiedResourceName = "½½·¹ÀÌÇÁ´Ï¸£", unidentifiedDescriptionName = { "^777777Seven League Boots^000000", "Its powers are mysterious.", "Type : ^777777Footgear^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Seven League Boots", identifiedResourceName = "½½·¹ÀÌÇÁ´Ï¸£", identifiedDescriptionName = { "^777777Seven League Boots^000000", "Its powers are mysterious.", "Type : ^777777Footgear^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 0 }, [29177] = { unidentifiedDisplayName = "Rune of the Martyr", unidentifiedResourceName = "¸¶¹ýÃ¥_¹«", unidentifiedDescriptionName = { "^777777Rune of the Martyr^000000", "Its powers are mysterious.", "Type : ^777777Accessory^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Rune of the Martyr", identifiedResourceName = "¸¶¹ýÃ¥_¹«", identifiedDescriptionName = { "^777777Rune of the Martyr^000000", "Its powers are mysterious.", "Type : ^777777Accessory^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 0 }, [29178] = { unidentifiedDisplayName = "Backup ring", unidentifiedResourceName = "ÁÙ", unidentifiedDescriptionName = { "^777777Backup ring^000000", "Its powers are mysterious.", "Type : ^777777Accessory^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Backup ring", identifiedResourceName = "ÁÙ", identifiedDescriptionName = { "^777777Backup ring^000000", "Its powers are mysterious.", "Type : ^777777Accessory^000000", "Defense : ^7777771^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 0 }, [29179] = { unidentifiedDisplayName = "Dragon Armor Plates", unidentifiedResourceName = "³ª°¡ÀǺñ´Ã°©¿Ê", unidentifiedDescriptionName = { "^777777Dragon Armor Plates^000000", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, identifiedDisplayName = "Dragon Armor Plates", identifiedResourceName = "³ª°¡ÀǺñ´Ã°©¿Ê", identifiedDescriptionName = { "^777777Dragon Armor Plates^000000", "Type : ^777777Headgear^000000", "Defense : ^7777771^000000", "Equipped on : ^777777High^000000", "Weight : ^7777771^000000", "Applicable Job : ^777777Every Job^000000", }, slotCount = 0, ClassNum = 0 },
  18. http://pastebin.com/n8QvyPBm You're probably just missing the tabs in the names, but here I tabbed the whole thing for you. Just click the download button in the upper right corner. Script is assumed working so untested. All credits to hendra814
  19. This my first time using the npcwalkto command so I'm not an expert on it, but yeah. prontera,165,178,8 script Old Woman 103,{ if( BaseLevel != 20 ){ emotion e_pif; npctalk "*Pfft* Your level isn't very interesting!!"; end; } setarray .@Items[0],714,25,1061,100,1095,200,618,10,1551,2,1614,1,727,20; set .@n$,"[Old Woman]"; npcstop; mes .@n$; if(BerzQuest == 1) { mes "Hey, I remember you! I already told you that you may only complete this quest once."; close; } mes "Greeting, lad. I found a really nifty item while I was picking mushrooms near Glast Heim."; next; if(select("Keep Talking:Leave")==2) goto M_Leave; mes .@n$; mes "I have never seen an item like this before. I am told it can be placed inside any accessory with a slot available."; next; mes .@n$; mes "If you're interested in this item, I'll tell you what you need for me to make you one of your own. I can only give one of these to each player, so once you finish this quest, you may not do it again."; next; if(select("Tell me more about it:Nah, I don't care about it")==2) goto M_Leave; mes .@n$; mes "I believe the item is called a ^FF0000Berzebub Card^000000. It makes you cast spells really fast!"; next; mes .@n$; mes "I need all of the following items:"; for(set .@i,0; .@i<getarraysize(.@Items); set .@i,.@i+2) { mes " ~ "+.@Items[.@i+1]+"x "+getitemname(.@Items[.@i]); if (countitem(.@Items[.@i]) < .@Items[.@i+1]) set .@nr,1; } next; if(select("I have all of that!:I'll get those ASAP")==2) goto M_Leave; mes .@n$; if (.@nr) { mes "You lie! Get out of here and get those items, you sorry excuse for a rock star."; close; } for(set .@i,0; .@i<getarraysize(.@Items); set .@i,.@i+2) delitem .@Items[.@i], .@Items[.@i+1]; getitem 4145,1; set BerzQuest, 1; mes "Congratulations! You have all the items. Here is your ^FF0000Berzebub Card^000000, as promised."; emotion e_grat; close; M_Leave: mes .@n$; mes "Such a great item I have right here..."; close; OnInit: set .delay,1000; //Delay between movement in milliseconds. npcspeed 100; //NPC movment speed 100=Default (0-200 0=Fastest 200=Slowest) OnTimer100: sleep(rand(0,(.delay))); getmapxy(.map$,.x,.y,1); npcwalkto (.x+(rand(-2,2))),(.y+(rand(-2,2))); initnpctimer; }
  20. http://ea.dj-yhn.com/index.php?c=getnameditem prontera,96,96,2 script Baseball Cap 66,{ mes "[^0000FFFeddie^000000]"; if(countitem(5147)){ delitem 5147,1; getnameitem 5147,getcharid(0); mes "You now have a Baseball Cap of your own!"; close; } mes "Come back when you get a slotted Baseball Cap!"; close; } From what I've read the character must exist in-order for this command to work.
  21. PC = "Player Character" will only effect when players are killed. - script Mirage -1,{ OnNPCKillEvent: if(rand(1,.npcpercent)-1||!@m_Eq) end; getmapxy( .@Map$,.@X,.@Y,0,strcharinfo(0) ); clone .@Map$,.@X,.@Y,"Mirage::OnCloneDeath",getcharid(0),getcharid(0),14261,0,30; end; OnPCKillEvent: if(rand(1,.pcpercent)-1||!@m_Eq) end; getmapxy( .@Map$,.@X,.@Y,0,strcharinfo(0) ); clone .@Map$,.@X,.@Y,"Mirage::OnCloneDeath",getcharid(0),getcharid(0),14261,0,30; end; OnCloneDeath: charcommand "#heal "+strcharinfo(0)+" -9999"; end; OnInit: set .pcpercent,50; // Player Percent 1=1% 100=100% set .npcpercent,20; // Non-player Character 1=1% 100=100% end; }
  22. Skorm

    Request (:

    Yes Yeah sure if you type in the wrong map name you will still get debug messages though. http://pastebin.com/HbS2n6Dm I didn't really have time to make it more user friendly but what it should do is allow you to spawn monsters and add drops for the event with rates O_O.
×
×
  • Create New...