Jump to content

Mirmo_

Members
  • Posts

    14
  • Joined

  • Last visited

Posts 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)

     

  2. 2 hours ago, AinsLord said:

    so i dunno what happen its just my inventory show like this

    image.png.9d08251db034ff563127876f73df2683.png

    a transparent slot already try to reconnect still same

    close the game still same

    anyone encounter this

    thanks

    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.

  3. On 2/14/2022 at 7:05 PM, Akbare said:

    sorry how to use sir?

    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.

     

    On 2/14/2022 at 8:53 PM, qtdan said:

    can we have this for pre renewal calc?

    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

    • Love 1
  4. 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;
    }

     

  5. //2012-04-10aRagexeRE
    packet_ver: 30
    0x01fd,15,repairitem,2:4:6:7:9:11:13
    0x089c,26,friendslistadd,2
    0x0885,5,hommenu,2:4
    0x0961,36,storagepassword,2:4:20
    0x0288,-1,cashshopbuy,2:4:8:10
    0x091c,26,partyinvite2,2
    0x094b,19,wanttoconnection,2:6:10:14:18
    0x0369,7,actionrequest,2:6
    0x083c,10,useskilltoid,2:4:6
    0x0439,8,useitem,2:4
    0x0945,-1,itemlistwindowselected,2:4:8:12
    0x0815,-1,reqopenbuyingstore,2:4:8:9:89
    0x0817,2,reqclosebuyingstore,0
    0x0360,6,reqclickbuyingstore,2
    0x0811,-1,reqtradebuyingstore,2:4:8:12
    0x0819,-1,searchstoreinfo,2:4:5:9:13:14:15
    0x0835,2,searchstoreinfonextpage,0
    0x0838,12,searchstoreinfolistitemclick,2:6:10
    0x0437,5,walktoxy,2
    0x0886,6,ticksend,2
    0x0871,5,changedir,2:4
    0x0938,6,takeitem,2
    0x0891,6,dropitem,2:4
    0x086c,8,movetokafra,2:4
    0x08a6,8,movefromkafra,2:4
    0x0438,10,useskilltopos,2:4:6:8
    0x0366,90,useskilltoposinfo,2:4:6:8:10
    0x0889,6,getcharnamerequest,2
    0x0884,6,solvecharname,2
    0x08e6,4
    0x08e7,10,bookingsearchreq,2:4:6:8:12
    0x08e8,-1
    0x08e9,2,bookingdelreq,0
    0x08ea,4
    0x08eb,39,bookingupdatereq,2
    0x08ec,73
    0x08ed,43
    0x08ee,6
    0x08ef,6,bookingignorereq,2
    0x08f0,6
    0x08f1,6,bookingjoinpartyreq,2
    0x08f2,36
    0x08f3,-1
    0x08f4,6
    0x08f5,-1,bookingsummonmember,2:4
    0x08f6,22
    0x08f7,3
    0x08f8,7
    0x08f9,6
    0x08fa,6
    0x08fb,6,bookingcanceljoinparty,2
    0x0907,5,moveitem,2:4
    0x0908,5
    0x08d7,28,battlegroundreg,2:4 //Added to prevent disconnections
    0x08cf,10 //Amulet spirits
    0x0977,14 //Monster HP Bar
    0x0916,26,guildinvite2,2
    0x091d,18,bookingregreq,2:4:6
    // New cashshop
    0x0844,2,cashshopopen,0
    0x084a,2,cashshopclose,0
    0x08c9,2,cashshopitemlist,0
    0x0848,-1,cashshopbuy,2:4:6:10
    

    this is what i use.

     

    THANK YOU SO MUCH! MUCH LOVE MUA MUA :**

×
×
  • Create New...