Jump to content

secondL

Members
  • Posts

    155
  • Joined

  • Last visited

Everything posted by secondL

  1. im using rathena svn 17324 and my client is 20120410 here the script: //########################################################################## //By: ____ _ __ __ ____ _____ # // | \ ___ __ __ _ | | \ \ / /_ _ _ / ___\ / ____| # // | || | / _ \\ \ / /| || | \ \ / /| || \ | || | ___ | (___ # // | || || __/ \ \/ / | || |__ \ \/\/ / | || \| || |___|\ \___ \ # // __|____/__\___|__\__/__|_||____|_____\_/\_/__|_||_|\__|_\_____/_____) | # //|_____________________________________________________________________/ # // # //########################################################################## // # //== Dice Event # // # //########################################################################## // # //== Automatically starts a dice event every 30 minutes of every hour # // # //== Prize- Change 13723 to any item ID you want the winner to recieved # // # //########################################################################## - script Dice#announcer -1,{ OnInit: disablenpc "prtevent"; hideonnpc "Dice#evnt1"; end; OnMinute1: announce "Dice: We are going to have a Dice event.",0; sleep2 10000; announce "Dice: For those who wants to join, Please proceed to the center of Prontera and enter the Warp Portal.",0; sleep2 10000; announce "Dice: After 1 Minute the Portal will close.",0; sleep2 10000; announce "Dice: So please go to the middle of Prontera and enter the Warp Portal now if you want to join.",0; enablenpc "prtevent"; initnpctimer; end; OnTimer30000: announce "Dice: Last 30 seconds.",0; sleep2 5000; announce "Dice: If you want to join please enter the Warp Portal beside me here in Prontera.",0; end; OnTimer50000: announce "Dice: Last 10 seconds.",0; end; OnTimer55000: announce "Dice: 5.",0; end; OnTimer56000: announce "Dice: 4.",0; end; OnTimer57000: announce "Dice: 3.",0; end; OnTimer58000: announce "Dice: 2.",0; end; OnTimer59000: announce "Dice: 1.",0; end; OnTimer60000: announce "Dice: Time's up.",0; end; OnTimer61000: disablenpc "prtevent"; donpcevent "Dice#evnt1::OnEnable"; stopnpctimer; end; OnTimer62000: announce "Dice: The next Dice event will begin after 30 minutes.",0; end; } //-------------------------------------------------- prontera,155,182,0 warp prtevent 2,2,quiz_01,204,90 //-------------------------------------------------- quiz_01,204,93,6 script Dice#evnt1 715,{ //-------------------------------------------------- mes "[Dice]"; mes "Please tell me your name"; next; input .@name$; if(.@name$ != strcharinfo(0)) { mes "[Dice]"; mes "Are you sure thats your character name?"; close; } mes "[Dice]"; mes "Congrats. You've won."; close2; announce "Dice: We have a winner, "+.@name$+".",0; getitem 7227,10; warp "prontera",155,185; hideonnpc "Dice#evnt1"; end; OnEnable: mapannounce "quiz_01","Dice: We are about to start the Dice event.",0; sleep2 10000; mapannounce "quiz_01","Dice: But before we start the event here's how to play the game. . .",0; sleep2 10000; mapannounce "quiz_01","Dice: I'm only gonna say this once so read carefully.",0; sleep2 10000; mapannounce "quiz_01","Dice: I'm going to pick a number, 1 to 4. Then I'll do a count down from 5 to 0.",0; sleep2 10000; mapannounce "quiz_01","Dice: All you have to do is go to the box of the number you want.",0; sleep2 10000; mapannounce "quiz_01","Dice: Example, If I get the number of 4, All the players standing on numbers 1 to 3 will be warped back to town.",0; sleep2 10000; mapannounce "quiz_01","Dice: We will do it again and again until we only have 1 player left on the map.",0; sleep2 10000; mapannounce "quiz_01","Dice: Oh yeah! Before I forget you MUST GO INSIDE THE BOX, because if you're caught standing on the stairs you'll be automatically disqualified.",0; sleep2 10000; mapannounce "quiz_01","Dice: That's that.. Now let's play...",0; sleep2 10000; goto L_Start; end; L_Start: if(getmapusers("quiz_01") == 1) goto L_Champ; if(getmapusers("quiz_01") == 0) goto L_None; if(getmapusers("quiz_01") > 1) { announce "Dice: . . . . .",0; set $@number, rand(1,4); sleep2 10000; announce "Dice: I have a number now. Please go to the box of the number you want.... GO!",0; sleep2 10000; announce "Dice: 5",0; sleep2 5000; announce "Dice: 4",0; sleep2 4000; announce "Dice: 3",0; sleep2 3000; announce "Dice: 2",0; sleep2 2000; announce "Dice: 1",0; sleep2 1000; announce "Dice: Time's up.",0; donpcevent "evnt#1::OnEnable"; announce "Dice: Winning number "+$@number+".",0; if(($@number != 1) && ($@number != 2) && ($@number != 3)) goto L_Lose1; if(($@number != 1) && ($@number != 2) && ($@number != 4)) goto L_Lose2; if(($@number != 1) && ($@number != 3) && ($@number != 4)) goto L_Lose3; if(($@number != 2) && ($@number != 3) && ($@number != 4)) goto L_Lose4; end; } L_Lose1: areawarp "quiz_01",183,81,191,60,"prontera",155,182; areawarp "quiz_01",195,81,203,60,"prontera",155,182; areawarp "quiz_01",207,81,215,60,"prontera",155,182; goto L_Start; end; L_Lose2: areawarp "quiz_01",183,81,191,60,"prontera",155,182; areawarp "quiz_01",195,81,203,60,"prontera",155,182; areawarp "quiz_01",219,81,227,60,"prontera",155,182;; goto L_Start; end; L_Lose3: areawarp "quiz_01",183,81,191,60,"prontera",155,182; areawarp "quiz_01",207,81,215,60,"prontera",155,182; areawarp "quiz_01",219,81,227,60,"prontera",155,182; goto L_Start; end; L_Lose4: areawarp "quiz_01",195,81,203,60,"prontera",155,182; areawarp "quiz_01",207,81,215,60,"prontera",155,182; areawarp "quiz_01",219,81,227,60,"prontera",155,182; goto L_Start; end; L_Champ: mapannounce "quiz_01","Dice: Come to me and tell me your name.",0; hideoffnpc "Dice#evnt1"; end; L_None: disablenpc "Dice#evnt1"; end; } - script evnt#1 -1,{ OnEnable: areawarp "quiz_01",182,94,228,88,"prontera",155,182; areawarp "quiz_01",185,87,188,82,"prontera",155,182; areawarp "quiz_01",197,87,200,82,"prontera",155,182; areawarp "quiz_01",209,87,212,82,"prontera",155,182; areawarp "quiz_01",221,87,224,82,"prontera",155,182; end; } and i got this error: [Map][18:19] [Error]: npc_parsesrcfile: Unknown syntax in file 'npc/custom/my npc/dice event.txt', line '203'. Stopping... i hope someone will fix this and thank you SOLVED! hahaha
  2. i miss you so bad rathena finally im back home
  3. edit your mob_db then on the card drop rate. try to make it 0. 1001,SCORPION,Scorpion,Scorpion,16,153,1,108,81,1,33,40,16,5,12,15,10,5,19,5,10,12,0,4,23,0x3191,200,1564,864,576,0,0,0,0,0,0,0,990,70,904,5500,757,57,943,210,7041,100,508,200,625,20,0,0,0,0,4068,1 the 4068 is the item #.1 at the end of it make it 0. wewww. can't the drop rate is setting by conf only? because if is set in mob_db . i should set this rate, one by one mob >.< Yes, we need a diff patch for this.. is there a diff patch for making a card drop to set in 0? If we set this 1 by 1, it will take a lot of time. Hope there is a diff or implementation about this. Just like this normal_card_drop: 0 mvp_card_drop: 0 I'm agree with his idea its better if "we" make a plug in or patcher about those cards
  4. Bump for the skull cap
  5. i mean dude where can i replace that file? 1. search for idnum2itemdesctable.txt inside the location i told you 2. look for the itemID (item #) which your try to edit/replace (the one w/ gibberish text) & edit it to your desired desc whatsoever if you don't know how to locate your idnum2itemdesctable.txt or possibly don't know what your doing, try to get it here and just paste it in your data folder and go to #2 all the necessary files to edit are on the link i gave you(get them there if you don't know how to locate yours from your client), try to explore & analyze the structure & purpose of the files in the link, that will help you if you do dude what i am talking about is this file (cskroption - lub file)....is this a replacement to the other one or i just add it?....then where is the exact location?....the idnum2itemdesctable.txt i was found in my data folder...im just wandering about the (cskroption) file cskroption.lub= on "data folder" while if your client doesn't read it then rename it to iteminfo.lub and place it to "System Folder" Note: cskroption/iteminfo.lub is usable only for 2012-4-18 clients & up ok dude now im clearly what i am doing to do thanks man!....
  6. i mean dude where can i replace that file? 1. search for idnum2itemdesctable.txt inside the location i told you 2. look for the itemID (item #) which your try to edit/replace (the one w/ gibberish text) & edit it to your desired desc whatsoever if you don't know how to locate your idnum2itemdesctable.txt or possibly don't know what your doing, try to get it here and just paste it in your data folder and go to #2 all the necessary files to edit are on the link i gave you(get them there if you don't know how to locate yours from your client), try to explore & analyze the structure & purpose of the files in the link, that will help you if you do dude what i am talking about is this file (cskroption - lub file)....is this a replacement to the other one or i just add it?....then where is the exact location?....the idnum2itemdesctable.txt i was found in my data folder...im just wandering about the (cskroption) file
  7. i mean dude where can i replace that file?
  8. where can i locate idnum2itemdesctable?.... Sir after i locate that skull cap in the list what is the 2nd step?
  9. im using rathena svn 17221 and my client is 2012-04-10...those item are i think are "rare item" cause when i search in ratemyserver.net most of them are dropped by battlegrounds and not available in iRO how can i fix that kind of situation specially in skull cap please look some my screen shot...
  10. sir paano ko gagawin iilipat ko yung item ko dyan sa txt na yan?
  11. yung freebie item ko kasi ay isang currency sa server ko, ngayon ang gusto ko sana gawin syang no tradeable, cannot drop, but can stored in storage...para hindi sila makapaglabas ng maraming freebie....sana maintindihan nyo ko
  12. Are you using this one? http://rathena.org/board/files/file/2504-multi-currency-shop/ this is the first time i saw that script anyway i will try it....thank you so much my friend!....GodBless
  13. hi euphy first of all thank you for your script! it so nice!....im just wanna ask how to fix the multi currency shop...coz i made a some shop using that script but they duplicate the item each of them i mean i want to make it like this ( if shop A have an item of spear then shop b have a sword item) but in my situation shop a have an item and shop b have the same item too...how too fix that?
  14. dude!!!! hahahaha it works perfectly!!!!! thank you so much!!!!!
  15. hahahahaha the first time i encountered that error, i also said that so weird so i delete everything and make a new one...still i got that error....anyway Nana thank you so much! dude i will try that....i hope that will be the solution on my problem thank you so much!
  16. yeah i recompile it....maybe i need some user who experienced what i said...coz i dunno if it is only by me or whoever got the error but honestly i am already know how to build a server and a client basically and im still got that annoying error everytime i click them (npc)....i hope some user will read my post who experienced what i said and leave some comment on how they fix it or maybe some idea...this thread will open for some negative comment and suggest about on what i am saying....Nana thank you for helping me! GOD BLESS
  17. still got error after i update my svn to the latest...
  18. ok i will do it...i post it what will be the result thanks nana!
  19. an error when you talk to npc it will freeze your character and it will not respond anymore you need to press ctlr+alt+delete to close it...i observe it before when the first time i successfully build my first RO offline and i thought it was a bug. But now i create a new server and it still the same error i get to when i talked to them...but my custom npc are fully function and i did not get any error to them just the "default NPC" have something wrong....i hope you understand what i mean
  20. honestly, i notice all the npc in my server are having an error everytime i talked to them....i thought it was a bug issue and i reported it...someone told me maybe it was a client then i use a client with a date of 2012-04-10...is there anyone here who use a client 2012-04-10 who experienced what i said?...starting to sprakki then the bulletin board in front of her then all the npc i hope someone can notice what i said im also use rathena up to the latest p.s: i cant trace where is wrong (client or svn) i mean i dont know where can i post this
  21. dude i experienced that before... are you using 2010-04-10?... if no then try to use that client...and how about kRO? are you using the latest (2013) if yes try the kRO client with a year 2012... answer first my question before you proceed
  22. hahaha im sorry dude i thought it was already dead but i checked it again (i think 8 hours ago) then its online maybe a some maintenance they doing? anyway thank you and sorry SOLVED!
  23. dude the link was already dead thank you
  24. Use Unlimited Loading Screen...i think it is a plugin for shin's diff patcher or weediff because in my diff patcher (it is latest! 5.7 ) i cant see that kind of plugin, i checked it twice already...i hope is there anyone who will share their plugin thank you P.S. i dont know where i can place this thread
×
×
  • Create New...