Jump to content

Keim

Members
  • Posts

    221
  • Joined

  • Last visited

Everything posted by Keim

  1. I don't know how to in equip1 and equip2, but for when one item is equiped.. In item_db or item_db2, at the end of every script will be three {}. If you want MDEF bonus when you equip the item, you place it in the second {}s, for example: {},{ bonus bMdef,20; },{} You can put the item bonus wherever you please inside those three {}s. The first pair is for the actual item bonus. The second is for when you equip the item, like it is here. And the third is for when you unequip the item. Hope this helps!
  2. Omg that always happens to me .__-
  3. Ooh! LMFAO! So sorry...I found the same link you found but it was broken I'll try to contact 2essy2killu. Good luck!
  4. Includes sprite, collection and preview. Credits to ToZorMan Download link: "]http://www.green-peach.com/download.php?file=Note_Headphones%20[ToZorMan] Taken from www.green-peach.com/sprite.php They have full collection of recolors.
  5. Haha, your closed your RO Website! Nice. If you want to submit your report, go to http://americancensorship.org/ !!
  6. Adaptation to Circumstances isn't used to make songs it's used to stop them. For example, to a whip: 1960,Whip,Whip,4,38000,,700,120,,2,1,0x00080000,7,0,2,3,30,1,14,{},{ itemskill 321,1; },{ itemskill 304,1; } "itemskill 321,1;" casts Poem of Bragi Level 1 and "itemskill 304,1;" casts Adaptation to Circumstances Level 1. Or else, you can only use itemskill 321,1 which would only cast Poem of Bragi, and not Adaptation. Note that Poem of Bragi is used when you equip the item, and Adaptation is used when you un-equip the item. Or, you can use skill 321,1; which would make your character get Poem of Bragi in their skill list (This would be put in the first pair of curlys). Not Tested*
  7. Creo que deberia haber algo malo en el .act y .spr. Si es que te da el error cuando te da la espalda es porque el .act / .spr no esta bien. O si no puede ser los LUA files. No se mucho exactamente en detalle, pero creo que es npcidentity y jobname o algo asi. Ojala que te resulte lo que los otros te dicen! Tambien, saludos desde Santiago!
  8. Why does this have two topics? Anyway, nice idea, but I don't think It's really going to work since the people who recognize the "Long Lost Friends" don't have...like contacts with them anymore..
  9. Keim

    Help

    Something's wrong with your switches. Check you have all the right curlys and left curlys in the right place. You've probably misplaced them.
  10. I heard about this a while ago...I mean I knew it myself. They'll close it forever if they loose...which would be a real downer for everyone who downloads from that site. I have a friend who pays MegaUpload for unlimited stuff and bla bla bla. Sad to all those people who have premium on their accounts and have to get it blocked. Just saying, MegaUpload was expecting it from before. The stupid guy Dotcom was wise enough to keep it away from public, but not anymore.
  11. The people deciding these things are people who have no idea about the internet and how it affects us. How it affects everyone!
  12. Thanks Terces & Arcenciel, works now
  13. Help protest against SOPA and PIPA Have you heard about SOPA and PIPA? What is SOPA and PIPA *Information taken from Wikipedia SOPA and PIPA represent two bills in the United States House of Representatives and the United States Senate respectively. SOPA is short for the "Stop Online Piracy Act," and PIPA is an acronym for the "Protect IP Act." ("IP" stands for "intellectual property.") In short, these bills are efforts to stop copyright infringement committed by foreign web sites, but, in our opinion, they do so in a way that actually infringes free expression while harming the Internet. Detailed information about these bills can be found in the Stop Online Piracy Act and PROTECT IP Act articles on Wikipedia, which are available during the blackout. GovTrack lets you follow both bills through the legislative process:SOPA on this page, and PIPA on this one. The Electronic Frontier Foundation, a non-profit organization dedicated to advocating for the public interest in the digital realm, has summarized why these bills are simply unacceptable in a world that values an open, secure, and free Internet. -------------------------------------------------------------------------------------------------------------------------------------------------- SOPA and PIPA are, in a way, evil. Mozilla Firefox, FaceBook, Wikipedia, ComputerWorld, Google and so many other sites are protesting against SOPA and PIPA to make the internet free of such things. If SOPA and PIPA wins the protest, hundreds of sites that you use daily for entertainment, communication and so much more will be removed. Your so much loved, Wikipedia will be blacked out and removed, like it was on January 19th 2012. Wikipedia and many, many other sites were blacked out or are blacked out to fight against this act, let the world know what this can do to all these sites, and let SOPA and PIPA know what damage and horrible acts they are doing or what they will do if this protest is lost. IF YOU AGREE WITH THIS PROTEST, AND WANT TO HELP FIGHT SOPA AND PIPA, POST A REPLY IN THIS TOPIC OR CHECK OUT WHAT IT CAN DO TO YOU http://www.1stwebdes...can-affect-you/
  14. Still not getting it...the 1 on the second line would be 1 because I only summon one monster, the first +1 i'm not sure, i took it from script_commands.txt. Is it possible for you to give me the actual code so i can put it? Because I don't know which code to replace for that one (or change).
  15. Somethings wrong...when you kill the "Amon Ra Summoner" it's supposed to come up with a dialogue which doesn't appear.. In between *if(countitem(7220)...* and the end is where the error is...apparently. payon,163,226,3 script Monster Quest 1511,{ mes "[Amon Ra]"; mes "What do you want, you little rat?"; next; mes "[Amon Ra]"; mes "Is it that you want to get zeny?!"; next; switch(select("Oh..Yes.:I don't think so.")) { case 1: mes "[Amon Ra]"; mes "Oh...then, you will need a special item I call the Ectoplasm."; next; mes "[Amon Ra]"; mes "You will need 50 of those Ectoplasms."; mes "Or else I don't let you get zeny."; next; mes "Do you have my ectoplasms?"; next; switch(select("Yes, I do.:No, Sorry!")) { case 1: mes "[Amon Ra]"; mes "Well well, give it then!"; next; if(countitem(7220)>=50) goto L_Apples; mes "[Amon Ra]"; mes "You don't have my item! GO AWAY!"; close; L_Apples: mes "[Amon Ra]"; mes "Oh, you have it. I'm sorry I didn't tell you, you must fight my summoner first!"; monster "payon" ,166,226, "Amon Ra Summoner",1511,1, "Monster Quest::OnPoringKilled"; close; OnPoringKilled: set $PoringKilled,$PoringKilled+1; if ($PoringKilled==1) goto L_AllDead; end; L_AllDead: mes "[Amon Ra]"; mes "Congratulations, you have killed my summoner. Here is your zeny."; set Zeny,Zeny+100000000; next; mes "[Amon Ra]"; mes "And an announcement!"; announce "Amon Ra: Oh My! "+strcharinfo(0)+" has killed my summoner and gained my zeny!",bc_blue|bc_all; next; mes "[Amon Ra]"; mes "Until next time!"; close; case 2: mes "[Amon Ra]"; mes "THEN GET IT!"; close; } case 2: mes "[Amon Ra]"; mes "Oh...so you don't want my marvelous zeny then!?"; next; warp "niflheim" ,90,108; close; } } [/codeBOX]
  16. Keim

    Alt+S Error

    Thanks, diffing client worked. +1
  17. When I open my skills I get an error saying: ResourceError: Cant find file À¯ÀúÀÎÅÍÆäÀ̽º\item\.bmp The problem is the skill "Potion Pitcher". It doesn't appear with any text, only it's image. I erased the skill from the skill_db and skill_tree, but It doesn't work. I'm thinking that it isn't the skill but it's the image causing my problem. I searched in \item\.bmp, but I have no idea what exactly it's pointing to...because in that file there is not a single skill icon. I'm pretty much certain it's that skill, because I scrolled down from the top, and when It reached Potion Pitcher it gave me the error. Any idea how to erase this?
  18. omg love them so classy and awsum.
  19. Keim

    Take care!

    Wah D: Take care Maki You will do goood
  20. What are you using...3CeAM? That's made with 3rd Jobs..
  21. Awsome Loouuiiss, awsome! 10/10
  22. How to make your own shop script by Keim 1) Open notepad or any other text editor. 2) Write the location you want your NPC to be. For example: prontera,150,150,4 Blue: map (prontera) and coordinates (y,x) Orange: The way the NPC is looking. 3) After that, you will put "shop" without the quotes with a <Tab> before. After the shop, you will put another <TAB> and write the name you want your NPC to have, lets say Red Potion Seller. After that comes the NPC sprite, in thise case 999. For a full list, go to http://www.dotalux.com/ro/npclist/. prontera,150,150,4<TAB>shop<TAB>Red Potion Seller<TAB>999, What is <TAB>? If you look on your keyboard, on the left normally above Caps Lock you will see the button tab. When you press it, you get a big space in between words/letters. 4) When you finished with that, right after the comma beside 999 you will put the item id. Lets say, 501 (Red Potion). ...Red Potion Seller<TAB>999,501 5) After you wrote 501 you will put a colon ( : ) and write the item price. ...999,501:999 6) When you finish with that, the npc will automatically put in the Item inside the npc. You can go on forever with the items, like I will show here. This should be your final result. prontera,150,150,4<Tab>shop<tab>Red Potion Seller<tab>999,501:999,502:999,503:999 Those would be three items, 501, 502 and 503, all of them with a price or 999. After that, it is not necessary to put a '}' or ';' since the script automatically detects them. I hope this guide helped you and others.
  23. I'm not sure how to change it from the server configuration itself, but there's a trick which will do it. Open notepad and press Enter twice. Then enter the name you want for your character, select all (ctr+a), copy and paste into the character selection box. Hope this helps.
  24. Very, very nice! Improved a lot since the last patcher design. 9/10!
  25. Happy New...oh wait...YEAR! Exactly 6 Hours and 4 Minutes and 57 Seconds!
×
×
  • Create New...