Jump to content

Start_

Members
  • Posts

    928
  • Joined

  • Last visited

  • Days Won

    14

Community Answers

  1. Start_'s post in instant stats and skills was marked as the answer   
    prontera,99,99,5 Stats and Skills 477,{ atcommand "@allskill"; atcommand "@allstats 120"; end; }  
  2. Start_'s post in Maps not showing night mode was marked as the answer   
    alb2trea mapflag nightenabled Change to your new maps.
  3. Start_'s post in how to fix unseccessful compile was marked as the answer   
    My solve is
    Clean Solution > Set build option to Debug > Build > Clean > Set build option to Release > Build
  4. Start_'s post in Script didnt work as i wish was marked as the answer   
    prontera,136,200,2 script Loyal Knight of Rune Midgard 418,{ if (countitem(7281) < 1) { mes "[Herold]"; mes "Welcome to Invek"; mes "I'm happy to welcome you here, friend."; mes "Are you here to help us with those fanatic church dudes?"; next; switch (select("Yes, Lord!:I'm not sure, Lord!:No, sorry!")) { case 1: mes "[Lord Asterix]"; mes "Fine! May our king bless you, kid!"; mes "First you need to prove us how loyal you are, kid."; mes "Bring me..."; next; mes "5 Emperium"; mes "100 Jellopy"; mes "100 Heart of Mermaid"; mes "25 Nose Ring of Minotaur"; next; mes "When you have all those items come back"; mes "and talk again to me, ok?"; if (countitem(714) >= 5 && countitem(909) >= 100 && countitem(941) >= 25 && countitem(950) >= 100) { switch (select("Here, I've got them:Maybe later")) { case 1: mes "[Lord Asterix]"; mes "Wow! I didn't thought that you were so fast!"; mes "Let me take this treasures for you."; next; delitem 714,5; delitem 909,100; delitem 941,25; delitem 950,100; getitem 7182,1; next; mes "[Lord Asterix]"; mes "Here you have your offical Emblem of the Knights"; mes "With this emblem, everybody will see that you are on of us!"; mes "Now you can get quests and other benefits here in Invek"; end; case 2: mes "[Lord Asterix]"; mes "I'm waiting here for you, kido!"; end; } if (countitem(714) < 5 && countitem(909) < 100 && countitem(941) < 25 && countitem(950) < 100) { switch (select("Okay, my Lord.")) { case 1: mes "[Lord Asterix]"; mes "May the king bless you"; end; } } } case 2: mes "[Lord Asterix]"; mes "So, you are not sure yet, kid?"; mes "Let me explain something to you..."; mes "We are the one who fight for the king. We have to bring up our souls for an unreacheable kingdom"; next; mes "[Lord Asterix]"; mes "Who else could do this?"; end; case 3: mes "[Lord Asterix]"; mes "I hope to see you again soon!"; end; } } if (countitem(7281) > 1) { mes "[Lord Asterix]"; mes "Traitor, go away!!"; close; } }  
  5. Start_'s post in Battle Royale like PUBG was marked as the answer   
    Download : https://goo.gl/Yvdmyw
    I will translate scripts to English if you want it.
  6. Start_'s post in Is it possible to add hyperlinks on 'books'? was marked as the answer   
    Is this can be used? I don't know but you can try.
    https://rathena.org/board/topic/85593-request-npc/?do=findComment&comment=213417

    and
    https://rathena.org/board/topic/106579-item-link-input/

    and
     
     
  7. Start_'s post in Quest log quest, what does this .@i < means was marked as the answer   
    .@name  - scope integer variable
     
    .@i  = 11124;
    You can see line 2 and line 4 in picture.
    if(checkquest(.@i
    mean
    if(checkquest(11124
     
    and it will loop  +1 +1 +1 +1 +1 will be
    if(checkquest(11125 - 11134
     
    //
    Edit #1
    This is quest 11124
     
  8. Start_'s post in Make a quest before can enter in the map was marked as the answer   
    prt_fild05,315,183,3    script    Warp Man   635,{     if(yourVariable==1){         warp "prontera",26,203;         end;     }     mes "Hello you cannot warp now.";     close; } prt_fild05,317,183,3    script    Warp Quest   635,{     if(yourVariable==0){         mes "You can warp now talk with Warp Man.";         set yourVariable,"1";         close;     }     mes "Hello, Good to see you again.";     close; }  
  9. Start_'s post in if else was marked as the answer   
    if(Zeny <= 100000){         mes "You dont have enough zeny";         close;     }     else{         set Zeny, Zeny-100000;         skilleffect 34,0; sc_start SC_BLESSING,500000,10;         skilleffect 29,0; sc_start SC_INCREASEAGI,500000,10;         skilleffect 33,0; sc_start SC_ANGELUS,500000,10;         skilleffect 74,0; sc_start SC_MAGNIFICAT,500000,5;         skilleffect 75,0; sc_start SC_GLORIA,500000,5;         skilleffect 66,0; sc_start SC_IMPOSITIO,500000,5;         skilleffect 361,0; sc_start SC_ASSUMPTIO,500000,5;         close;     }  
  10. Start_'s post in Izlude Map Dark? NPC out of place was marked as the answer   
    Check
    npc\scripts_athena.conf
    npc\scripts_warps.conf
    npc\re\scripts_athena.conf
    npc\re\scripts_warps.conf
    npc\pre-re\scripts_athena.conf
    npc\pre-re\scripts_warps.conf
    for Enable / Disable scripts.
  11. Start_'s post in outdated visual studio please was marked as the answer   
    VISUAL STUDIO 2008 : https://www.microsoft.com/en-us/download/details.aspx?id=7873
    VISUAL STUDIO 2008 SP1 : https://www.microsoft.com/en-us/download/details.aspx?id=10986
    VISUAL STUDIO 2010 : https://www.microsoft.com/en-us/download/details.aspx?id=23507
    VISUAL STUDIO 2012 : https://www.microsoft.com/en-us/download/details.aspx?id=30682
    VISUAL STUDIO 2013 : https://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx
    VISUAL STUDIO 2015 : https://beta.visualstudio.com/visual-studio-community-vs/
     
    VISUAL STUDIO 2015 C++ TOOLS ( IF FORGET TO CHECK C++ ON 2015 INSTALLER )
    64BIT
    https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x64.exe
     
    32 BIT
    https://download.microsoft.com/download/9/3/F/93FCF1E7-E6A4-478B-96E7-D4B285925B00/vc_redist.x86.exe
  12. Start_'s post in can't use atcommand was marked as the answer   
    atcommand "@vip +2h "+strcharinfo(0)+"";
  13. Start_'s post in Mind Break Skill was marked as the answer   
    Oh sorry, It's can use to guildmates now right?
     
    Then change vaules on " skill_db.txt " to default.
    402,9,6,1,0,0x1,0,5,1,no,0,0,0,none,0,0x0, PF_MINDBREAKER,Mind Breaker
  14. Start_'s post in My script got an error but no error in game was marked as the answer   
    Try
     
     
    to
     
     
    Not sure sorry If doesn't work.
  15. Start_'s post in npc Roel not show[solve] + 1 problems about language was marked as the answer   
    Solved
     
    I used 2013-03-20 and these diff
     
     
    * Allow space in guild name* Change Gravity Error Handler * Custom Window Title ($customWindowTitle=K@NIn) * Disable Ragexe Filename Check * Disable Hallucination Wavy Screen * Disable HShield * Disable Packet Encryption * Enable 64k Hairstyle * Enable Custom 3D Bones * EnableDNSSupport * Enable Multiple GRFs * Enable Title Bar Menu * Enforce Official Login Background * Fix Camera Angles (FULL) * @ Bug Fix (Recommended) * Ignore Missing File Error * Ignore Missing Palette Error * Increase Headgear ViewID to 5000 * Increase Zoom Out Max * Read msgstringtable.txt * Read questid2display.txt * Remove GM Sprites * Remove Gravity Ads * Remove Gravity Logo * Remove Hourly Annonce * Remove Serial Display * Skip License Screen * Use SSO Login Packet * Translate Client In English * Use Custom Aura Sprites * Use Normal Guild Brackets * Use Ragnarok Icon    
     
    Oh my godddddddddd to long time for fixed this problems!
×
×
  • Create New...