Jump to content

Earnestinence

Members
  • Posts

    152
  • Joined

  • Last visited

  • Days Won

    9

Everything posted by Earnestinence

  1. conf\battle\drops.conf line:77 set item_rate_mvp: 0 // The rate adjustment for the MVP items that the MVP gets directly in their inventory // Mode: 0 - official order, 1 - random order, 2 - all items item_rate_mvp: 100 item_drop_mvp_min: 1 item_drop_mvp_max: 10000 item_drop_mvp_mode: 0
  2. i don't think the " lucky roulette " system is ready yet!
  3. Hello there @Questune09, >>>>> step 1: after finshing the quest, under getitem ( the prize ) add this : set CooldownQuest,gettimetick(2); step 2: and before taking the quest add time check: if(gettimetick(2) - CooldownQuest < (60 * 60 * 24)) { next; mes "[ Daily Quest ]"; mes "^FF0000Sorry you have to wait 24 Hours until you can do the Quest again!^000000"; close; } <<<<< or use this prt_in,82,93,2 script Daily Quest 513,{ if (getgmlevel() >= 80) goto GM_Menu; L_START: if (getgmlevel() >= 80) next; mes "[ Daily Quest ]"; mes "Total Daily Quests Finished: ^008800"+$DailyQuestTotal+"^000000."; mes "Today Daily Quests Finished: ^0000FF"+$DailyQuestToday+"^000000."; next; mes "[Daily Quest]"; mes "Hello "+strcharinfo(0)+"!"; mes "Do you want to start today's Quest?"; mes " "; menu "Yes!",-,"Nahh",L_Close; if(gettimetick(2) - CooldownQuest < (60 * 60 * 24)) { next; mes "[ Daily Quest ]"; mes "^FF0000Sorry you have to wait 24 Hours until you can do the Quest again!^000000"; close; } next; mes "[Daily Quest]"; mes "You'll need these item for Today's Quest:"; mes "^FF0000"+getitemname($QuestItem1)+"^000000 x "+$QuestItem1HM+""; mes "^FF0000"+getitemname($QuestItem2)+"^000000 x "+$QuestItem2HM+""; mes "^FF0000"+getitemname($QuestItem3)+"^000000 x "+$QuestItem3HM+""; mes "In exchange you will get ^0000FF"+getitemname($DailyQuestPrize)+"^000000 x "+$DailyQuestPrizeHM+""; next; mes "[Daily Quest]"; mes "Do you have the items?"; menu "Yes! I do.",-,"Gimme some time.",L_Close; if(countitem($QuestItem1) >= $QuestItem1HM) && (countitem($QuestItem2) >= $QuestItem2HM) && (countitem($QuestItem3) >= $QuestItem3HM) goto FinishQuest; next; mes "[Daily Quest]"; mes "You only have "+countitem($QuestItem1HM)+" of ^FF0000"+getitemname($QuestItem1)+"^000000, "+countitem($QuestItem2HM)+" of ^FF0000"+getitemname($QuestItem2)+"^000000, "+countitem($QuestItem3HM)+" of ^FF0000"+getitemname($QuestItem3)+"^000000."; mes "Come back when you have it! Better get the items quickly. It's gonna change in a Day!"; close; L_Close: next; mes "[Daily Quest]"; mes "Come back again! Get the Items!"; mes "Goodbye!"; close; GM_Menu: mes "[Daily Quest]"; mes "Hello GM "+strcharinfo(0)+"!"; mes "What can I do for you today?"; menu "Player Menu",L_START,"Change Today's Quest/Prize",L_ChangeQuest,"Close",L_Close; L_ChangeQuest: next; mes "[Daily Quest]"; mes "What will you like to change?"; next; menu "Go back.",GM_Menu,"Prize [^0000FF"+getitemname($DailyQuestPrize)+"^000000 x "+$DailyQuestPrizeHM+"]",L_ChangePrize,"Change Quest Randomly",L_ChangeQuestRandom,"Change Quest by Myself",L_ChangeQuestMyself; L_ChangeQuestMyself: next; mes "[Daily Quest]"; mes "Which item would you like to change first?"; menu "Go Back.",L_ChangeQuest,"Item 1 [^FF0000"+getitemname($QuestItem1)+"^000000 x "+$QuestItem1HM+"]",L_ChangeItem1,"Item 2 [^FF0000"+getitemname($QuestItem2)+"^000000 x "+$QuestItem2HM+"]",L_ChangeItem2,"Item 3 [^FF0000"+getitemname($QuestItem3)+"^000000 x "+$QuestItem3HM+"]",L_ChangeItem3; L_ChangeItem1: next; mes "[Daily Quest]"; mes "Alright. What will be the item?"; next; input $QuestItem1; next; L_ChangeItem12: mes "[Daily Quest]"; mes "How much of ^ff0000"+getitemname($QuestItem1)+"^000000 do you want?"; mes "It must be in the range of ^0088001 ~ 200^000000."; next; input $QuestItem1HM; next; if ($QuestItem1HM > 200) goto L_HMItem1Denied; mes "[Daily Quest]"; mes "Item 1 Set."; set $DailyQuestToday,0; mes "^FF0000"+getitemname($QuestItem1)+"^000000 x "+$QuestItem1HM+"."; next; goto L_ChangeQuest; L_HMItem1Denied: mes "[Daily Quest]"; mes "This item (^ff0000"+getitemname($QuestItem1)+"^000000) must be in a range of ^0088001 ~ 200^000000."; next; goto L_ChangeItem12; L_ChangeItem2: next; mes "[Daily Quest]"; mes "Alright. What will be the item?"; next; input $QuestItem2; next; L_ChangeItem22: mes "[Daily Quest]"; mes "How much of ^ff0000"+getitemname($QuestItem2)+"^000000 do you want?"; mes "It must be in the range of ^0088001 ~ 150^000000."; next; input $QuestItem2HM; next; if ($QuestItem2HM > 150) goto L_HMItem2Denied; mes "[Daily Quest]"; mes "Item 2 Set."; set $DailyQuestToday,0; mes "^FF0000"+getitemname($QuestItem2)+"^000000 x "+$QuestItem2HM+"."; next; goto L_ChangeQuest; L_HMItem2Denied: mes "[Daily Quest]"; mes "This item (^ff0000"+getitemname($QuestItem2)+"^000000) must be in a range of ^0088001 ~ 150^000000."; next; goto L_ChangeItem22; L_ChangeItem3: next; mes "[Daily Quest]"; mes "Alright. What will be the item?"; next; input $QuestItem3; next; L_ChangeItem32: mes "[Daily Quest]"; mes "How much of ^ff0000"+getitemname($QuestItem3)+"^000000 do you want?"; mes "It must be in the range of ^0088001 ~ 50^000000."; next; input $QuestItem3HM; next; if ($QuestItem3HM > 50) goto L_HMItem3Denied; mes "[Daily Quest]"; mes "Item 3 Set."; set $DailyQuestToday,0; mes "^FF0000"+getitemname($QuestItem3)+"^000000 x "+$QuestItem3HM+"."; next; goto L_ChangeQuest; L_HMItem3Denied: mes "[Daily Quest]"; mes "This item (^ff0000"+getitemname($QuestItem3)+"^000000) must be in a range of ^0088001 ~ 50^000000."; next; goto L_ChangeItem32; L_ChangeQuestRandom: set $QuestItem1, rand(701,1065); set $QuestItem1HM, rand(1,200); set $QuestItem2, rand(701,1065); set $QuestItem2HM, rand(1,150); set $QuestItem3, rand(701,1065); set $QuestItem3HM, rand(1,50); set $DailyQuestToday,0; mes "[Daily Quest]"; mes "This is the Daily Quest:"; mes "^FF0000"+getitemname($QuestItem1)+"^000000 x "+$QuestItem1HM+""; mes "^FF0000"+getitemname($QuestItem2)+"^000000 x "+$QuestItem2HM+""; mes "^FF0000"+getitemname($QuestItem3)+"^000000 x "+$QuestItem3HM+""; next; goto GM_Menu; L_ChangePrize: next; mes "[Daily Quest]"; mes "Input the Prize"; next; input $DailyQuestPrize; next; mes "[Daily Quest]"; mes "The Prize: "+getitemname($DailyQuestPrize)+" x How many?"; next; input $DailyQuestPrizeHM; next; mes "[Daily Quest]"; mes "This is what you like?"; mes "^0000ff"+getitemname($DailyQuestPrize)+"^000000 x "+$DailyQuestPrizeHM+"."; menu "Yup, Thanks.",GM_Menu,"Noo! I made a mistake!",L_ChangePrize; FinishQuest: next; mes "[Daily Quest]"; mes "You got ^0000FF"+getitemname($DailyQuestPrize)+"^000000 x "+$DailyQuestPrizeHM+"."; delitem $QuestItem1,$QuestItem1HM; delitem $QuestItem2,$QuestItem2HM; delitem $QuestItem3,$QuestItem3HM; getitem $DailyQuestPrize,$DailyQuestPrizeHM; set CooldownQuest,gettimetick(2); set $DailyQuestTotal,$DailyQuestTotal +1; set $DailyQuestToday,$DailyQuestToday +1; close; } - script DailyQuestItemChanger -1,{ OnInit: OnClock0000: while ( getitemname( set( $QuestItem1, rand(701,1065) ) ) == "null" ); set $QuestItem1HM, rand(1,200); while ( getitemname( set( $QuestItem2, rand(701,1065) ) ) == "null" ); set $QuestItem2HM, rand(1,150); while ( getitemname( set( $QuestItem3, rand(701,1065) ) ) == "null" ); set $QuestItem3HM, rand(1,50); set $DailyQuestToday,0; end; } i recommend do adding the codes manually
  4. give me the coordinate /who ? make sure you use GM Sprite not just account with group id 99 add you'r account id to clientinfo.xml to be able to see the circle... ex <admin>2000003</admin> look here ( with GM sprite group id 99 ): http://prntscr.com/fqz5vn and look here ( without GM sprite group id 99 ): http://prntscr.com/fqz6o8
  5. you can't actually fix/remove the circle ( it's not a bug or something ), only GM can see that circle cause there's a hiding npc, so i don't think that the players will be able to see it only gms
  6. there's no problem actually it's normal the drops rates are kinda high for these items, you can see that the card didn't drop maybe lower the rates of weapons, normal cards, common and healing items to 10% ?
  7. first of all what client do you use? in nemo patch check the next option: Hide Map Button Hide Nav Button
  8. Hello again @Albert patch the client using nemo check this list only ( just tested it now by me ) NOTE: IF YOU DISABLE " PACKET OBFUSCATION " YOU NEED TO DISABLE " PACKET ENCRYPTION " IN NEMO TOO @ Bug Fix (Recommended) Always Call SelectKoreaClientInfo() (Recommended) Cancel to Login Window (Recommended) Custom Window Title Disable 1rag1 type parameters (Recommended) Disable Game Guard (Recommended) Disable Help Message on Login (Recommended) Disable Nagle Algorithm (Recommended) Disable Ragexe Filename Check (Recommended) Enable /showname (Recommended) Enable /who command (Recommended) Enable 64k Hairstyle Enable DNS Support (Recommended) Enable Multiple GRFs (Recommended) Enable Title Bar Menu Fix Camera Angles (Recommended) Load Custom lua file instead of iteminfo*.lub (Recommended) Read Data Folder First Read msgstringtable.txt (Recommended) Read questid2display.txt (Recommended) Remove Gravity Ads (Recommended) Remove Gravity Logo (Recommended) Remove Hourly Announce (Recommended) Remove Serial Display (Recommended) Restore Login Window (Recommended) Translate Client (Recommended) Use Ascii on All LangTypes (Recommended) Use Normal Guild Brackets (Recommended) Use Plain Text Descriptions (Recommended) Use Ragnarok icon //IF YOU DISABLE " PACKET OBFUSCATION " YOU NEED TO DISABLE " PACKET ENCRYPTION " IN NEMO TOO Disable Packet Encryption
  9. Hello rAthena Community, so I've been using client 2013-08-07 for a while but now i moved to client 2015-11-04 i notice that some official hair colors are missing even tho i have the corrected hair color palette! i tried to check/uncheck enable 64k hairstyle & color in nemo here's video to explain the left side is client 2013-08-07 in the right side is client 2015-11-04
  10. try command @sakura if that work, i would guess it from the map it's self
  11. Hello @Albert, disable PACKET_OBFUSCATION src/config/core.h //#define PACKET_OBFUSCATION don't forget to recompile the server
  12. Hello @Chemical Crush, can you please update/re-upload the images! thanks
  13. Hello there @nikita54421, set item_rate_card_mvp: 1000 and the normal drop to 2500 ex: item_rate_card: 2500 here an explanation: 100 = 0.01% 1000 = 0.1% 10000 = 1% 100000 = 10% 1000000 = 100%
  14. Hello there @MMasters in nemo patcher check: >>> Enable /showname (recommended)
  15. @K e o u g h has a really great talent you should see his work ...
  16. Hello @Lordok i already did that, still same error SOLVED: i was running the server on the wrong DB
  17. conf\battle\client.conf // Do we allow to change guilde emblem during woe_time? emblem_woe_change: yes Edit to: emblem_woe_change: no
  18. Hello there, i just updated my server, and i'm getting this error after recompile charserv.bat [SQL]: DB error - Table 'rathena.clan' doesn't exist [Debug]: at c:\users\pcd\desktop\rathena\03 rathena\rathena\src\char\int_clan.c:210 - SELECT `clan_id` FROM `clan` [Status]: Finished Reading GeoIP Database. [Status]: Characters per Account: '0'. [Info]: Start checking DB integrity [SQL]: DB error - Table 'rathena.clan' doesn't exist [Debug]: at c:\users\pcd\desktop\rathena\03 rathena\rathena\src\char\char.cpp:2244 - SELECT 1 FROM `clan` LIMIT 1; [Fatal Error]: char : A tables is missing in sql-server, please fix it, see (sql-files main.sql for structure) Update: also in mapserv.bat [SQL]: DB error - Table 'rathena.sales' doesn't exist [Debug]: at c:\users\pcd\desktop\rathena\03 rathena\rathena\src\map\cashshop.c:200 - SELECT `nameid`, UNIX_TIMESTAMP(`start`), UNIX_TIMESTAMP(`end`), `amount` FROM `sales` WHERE `end` > now() [SQL]: DB error - Table 'rathena.sales' doesn't exist [Debug]: at c:\users\pcd\desktop\rathena\03 rathena\rathena\src\map\cashshop.c:438 - DELETE FROM `sales` WHERE `end` < FROM_UNIXTIME(1498610778)
  19. yes my.ini last line add sql_mode=NO_ENGINE_SUBSTITUTION http://prntscr.com/foixkb
  20. add sql_mode=NO_ENGINE_SUBSTITUTION to your mysql.ini / my.ini Edit: update ur fluxcp files to latest
  21. Glad to help, please don't forget to make my 1st post as best answer! thanks
  22. @Diana here's my clientinfo <?xml version="1.0" encoding="euc-kr" ?> <clientinfo> <servicetype>english</servicetype> <servertype>primary</servertype> <connection> <display>Renewal MeowRO</display> <balloon>Chaos</balloon> <desc></desc> <address>127.0.0.1</address> <port>6900</port> <version>55</version> <langtype>19</langtype> <registrationweb></registrationweb> <aid> <admin>2000000</admin> <admin>2000002</admin> </aid> <loading> </loading> </connection> </clientinfo> http://prntscr.com/fnsqlr
×
×
  • Create New...