Jump to content

Mirmo_

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by Mirmo_

  1. Damage display is upside down. I disabled the hallucinations in the src/client.conf and nemo. Any ideas? Client ver: 2019-06-05f 2 Chat Flood Allow 5 Enable Proxy Support 8 Custom Window Title 9 Disable 1rag1 type parameters (Recommended) 10 Disable 4 Letter Character Name Limit 11 Disable 4 Letter User Name Limit 12 Disable 4 Letter Password Limit 14 Disable Hallucination Wavy Screen (Recommended) 16 Disable Swear Filter 17 Enable Official Custom Fonts 19 Enable Title Bar Menu (legacy) 20 Extend Chat Box 21 Extend Chat Room Box 22 Extend PM Box 23 Enable /who command (Recommended) 28 Increase Headgear ViewID 30 Increase Zoom Out 50% 34 Enable /showname (Recommended) 36 Read msgstringtable.txt (Recommended) 38 Remove Gravity Ads (Recommended) 39 Remove Gravity Logo (Recommended) 41 Disable Nagle Algorithm (Recommended) 43 Always Use Email for Char Deletion 44 Translate Client (Recommended) 46 Use Normal Guild Brackets (Recommended) 47 Use Ragnarok Icon 48 Use Plain Text Descriptions (Recommended) 49 Enable Multiple GRFs (Recommended) 50 Skip License Screen 53 Use Ascii on All LangTypes (Recommended) 54 Chat Color - GM 64 @ Bug Fix (Recommended) 65 Load Custom lua file instead of iteminfo*.lub (Recommended) 73 Remove Hourly Announce (Recommended) 74 Increase Screenshot Quality 76 Enforce Official Login Background 84 Remove Serial Display (Recommended) 86 Only First Login Background 90 Enable DNS Support (Recommended) 91 Disconnect to Login Window 106 Hide BG Button 108 Hide Booking Button 110 Hide Achievements Button 113 Hide Quest Button 115 Enable Effect for all Maps [Experimental] 213 Disable Help Message on Login (Recommended) 215 Increase Map Quality 230 Always load Korea ExternalSettings lua file (Recommended) 231 Remove hardcoded address/port (Recommended) 232 Restore old login packet (Recommended) 233 Hide SNS Button 244 Disable Cheat Defender Game Guard (Recommended) 246 Increase hair style limit in game 248 Remove wrong chars from cash shop 253 Skip some hidden menu icon buttons 256 Use Default Web Browser In Cashshop 258 Enable Shortcut All Item 268 Restore chat focus 270 Change AchievementList*.lub path 271 Change MonsterSizeEffect*.lub path 272 Change Towninfo*.lub path 273 Change PetEvolutionCln*.lub path 274 Change Tipbox*.lub path 275 Change CheckAttendance*.lub path 276 Change OngoingQuestInfoList*.lub path 278 Change PrivateAirplane*.lub path 279 Fix item description bug 287 Change character display deletion time 289 Fix Homunculus attack AI 290 Hide build info in client (Recommended) 291 Hide packets from peek (Recommended) 307 Hide attendance button 308 Hide adventurer agency button 316 Remove Equipment Swap Button 319 Opening To Service Select 322 Case-Insensitive Storage Search 325 Remove Equipment Title UI 326 Disable OTP Login Packet (Recommended) 328 Enable 44.1 kHz Audio Sampling Frequency 329 Disable ViewPointTable.txt 338 Additional client validation (Recommended) 342 Add support for preview button in cash shop 345 Send at commands to server 348 Send client flags to server (Recommended) 351 Translate arrows buttons text from korean to english 362 Fixes the Korean Job name issue with LangType (Recommended) 404 Use borderless mode in full screen (Recommended) 2022-02-19_11-29-14.mp4
  2. No. The hourly rewards script takes effect when you enter the map-server. relog or character select = disconnect
  3. Windows, use visual studio and select clean solutions Linux, go to your emulator folder and enter, make clean
  4. Are you using a customized UI skin? Try changing to a different skin like Scribbling Kid, etc. Check your UI images in your data folder or .grf file. It looks like that invisible slot is filled with (#FF00FF) fuchsia/magenta color.
  5. https://github.com/rathena/rathena/commit/efd61daeea454b936943430ad8be308df0ca5ca9#comments
  6. You have to use GitBash to run the script. 1. Download & Install GitBash 2. Download the script and save it to your Downloads folder. 3. Open GitBash and navigate to your Downloads folder by typing: Note: CHANGE the "PROFILE" below to whatever is your user profile name on your computer cd C:\Users\PROFILE\Downloads 4. Type ./job_basepoints_re_gen.awk 255 > job_basepoints.yml Note: If your server is level 255 or higher than 99 then change the number. You can use this one for pre-renewal. pre-renewal and renewal are using the same hp modifiers for Transcendent classes. https://irowiki.org/wiki/Max_HP this is for classic servers. https://irowiki.org/classic/Max_HP
  7. I think it's easier to just add the critical wound effects on the item script instead of skills. bonus3 bAutoSpell,"NPC_CRITICALWOUND",0,100; (change 0 to your preferred proc rate)
  8. Does rAthena have a source release with skills modifications based on Ragnarok Zero & iRO Transcendent?
  9. I'm trying to add a custom headgear (poring hat costume) that will transform your character into a poring for 5 seconds when dealing or receiving physical damage. I looked up items with same effects but i don't understand since it's too long. Help please thank you.
  10. @Capuche Thank you so much, it works perfectly!
  11. Hello everyone, I'm trying to make a Charity NPC. I'm beginner in scripting and Im using guides and forums just to see how it works. But now i can't get it too work. I need your help pls. The script is fully functional, no errors but i cannot add an event timer to activate the event (hidden npc).. The way i want it to work is like : Players can choose how much they would donate in ZENY. (5m, 10m, 15m or 25m) If player, donated a money to the NPC it will do an announcement. If the npc collects 75m it will activate/show the NPC Quests (quest npcs are hidden) for 2 days. After 2 days, it will hide the quest npcs. So players need to donate 75m in total to activate again. Heres the script i made: //Charity NPC// //Ryonin// izlude,124,139,6 script Lucy 101,{ // Variables set .@n$, "[Lucy]"; set ##donate5m, 5000000; set ##donate10m, 10000000; set ##donate15m, 15000000; set ##donate25m, 25000000; // Zeny Detector if (Zeny < ##donate5m) { mes .@n$; mes "Sorry, you dont have enough money to talk to me."; mes "You need to have atleast ^FF00005,000,000z^000000."; mes "The total amount I collected is : ^0000CD["+##totaldonate+"]^000000 zeny."; close; end;} // Start mes .@n$; mes "Hello, Citizen of Ragnarok Offline."; mes "Can I help you with something?"; next; switch(select("Yes, I would like to donate:No, Thank you")) { case 1: mes .@n$; mes "I was assigned by the ^DAA520 GM Team^000000 to collect the donation money."; mes "The total amount I collected is : ^0000CD["+##totaldonate+"]^000000 zeny."; next; mes .@n$; mes "You can only donate 1,000,000z or 5,000,000z."; next; mes .@n$; mes "If I collected a total amount of ^FF000075,000,000^000000z."; mes "I can activate this event:"; mes "Event: ^8B008BComodo Hat Festival Quest^000000."; mes "Event Duration: ^006400[2 DAYS]^000000."; next; mes .@n$; mes "How much money you want to donate?"; mes "Once you donate, I can't your money back."; next; switch(select("5,000,000z:10,000,000z:15,000,000z:25,000,000z")) { case 1: mes .@n$; set zeny, zeny - ##donate5m; goto Donate5M; close; case 2: mes .@n$; set zeny, zeny - ##donate10m; goto Donate10M; close; case 3: mes .@n$; set zeny, zeny - ##donate15m; goto Donate15M; close; case 4: mes .@n$; set zeny, zeny - ##donate25m; goto Donate25M; close; } close; end; case 2: mes .@n$; mes "Okay then. See you later."; close; end; } // Zeny Donation Selection Donate5M: set ##totaldonate, ##totaldonate + 5000000; mes "Thank you for donating 5,000,000z!"; mes "We appreciate your generosity."; announce "[Charity Lucy: "+strcharinfo(0)+"] has donated [5,000,000z] to Charity! We appreciate your generosity.",0; next; mes .@n$; mes "The total amount I collected is : ^0000CD["+##totaldonate+"]^000000 zeny."; close; Donate10M: set ##totaldonate, ##totaldonate + 10000000; mes "Thank you for donating 10,000,000z!"; mes "We appreciate your generosity."; announce "[Charity Lucy: "+strcharinfo(0)+"] has donated [10,000,000z] to Charity! We appreciate your generosity.",0; next; mes .@n$; mes "The total amount I collected is : ^0000CD["+##totaldonate+"]^000000 zeny."; close; Donate15M: set ##totaldonate, ##totaldonate + 15000000; mes "Thank you for donating 15,000,000z!"; mes "We appreciate your generosity."; announce "Charity Lucy: ["+strcharinfo(0)+"] has donated [15,000,000z] to Charity! We appreciate your generosity.",0; next; mes .@n$; mes "The total amount I collected is : ^0000CD["+##totaldonate+"]^000000 zeny."; close; Donate25M: set ##totaldonate, ##totaldonate + 25000000; mes "Thank you for donating 25,000,000z!"; mes "We appreciate your generosity."; announce "Charity Lucy: ["+strcharinfo(0)+"] has donated [25,000,000z] to Charity! We appreciate your generosity.",0; next; mes .@n$; mes "The total amount I collected is : ^0000CD["+##totaldonate+"]^000000 zeny."; close; Reset: set ##totaldonate, 0; announce "Charity Lucy: Charity Event for 2 Days has ended. Don't forget to donate to activate.",0; sleep 10000; announce "Charity Lucy: Thank you for your generosity.",0; close; }
  12. THANK YOU SO MUCH! MUCH LOVE MUA MUA :**
×
×
  • Create New...