Jump to content

Radian

Members
  • Posts

    1,542
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Radian

  1. Nice map as always, Sage! also its great that you're back and more maps showcase plzzz.
  2. This is a great project @Zell very nice good job!
  3. conf/battle/feature.conf // Atcommand suggestions (Note 1) // If one type incomplete atcommand, it will suggest the complete ones. feature.atcommand_suggestions: off It seems that it only works on game masters or admin level.
  4. I dont understand, what you're trying to do here, you said that you want to show a dispbottom message. Maybe others can help you with this one, im sorry.
  5. if (rand(100) < .chance) getitem .p_rwd[0], .p_rwd[1], [email protected][ rand( [email protected] ) ]; dispbottom "[ System ] : Player ["+ strcharinfo(0) +"] of party ["+ strcharinfo(1) +"] has killed "+ getmonsterinfo( killedrid, MOB_NAME ) +" at "+ strcharinfo(3); } else { if (rand(100) < .chance) getitem .s_rwd[0], .s_rwd[1]; if(#mvpon >= 1) dispbottom "[ System ] : Player ["+ strcharinfo(0) +"] has killed "+ getmonsterinfo( killedrid, MOB_NAME ) +" alone at "+ strcharinfo(3); }
  6. That will only trigger if a player with #mvpon variable. the rest will work as what it should be.
  7. OnNPCKillEvent: //if (getgmlevel() >= .gm ) end; // If gm = event wont happen if(#mvpon >= 1) dispbottom "It triggers cause you got the " + #mvpon + " variable.";
  8. for this one [email protected],rand(1,15); its the value when this part comes in else if (([email protected] > 12) && ([email protected] < 15)) set [email protected],ITEM_ID; // New Item [email protected] greater than 12 && [email protected] less than 15 = get item.
  9. Yeah just add it here set [email protected],rand(1,15); else if (([email protected] > 8) && ([email protected] < 11)) set [email protected],7078; // wov else if (([email protected] > 12) && ([email protected] < 15)) set [email protected],ITEM_ID; // New Item I think that would work, i didnt test it.
  10. this part should be announce "Wow! The Seal has been annihilated by "+strcharinfo(0)+" He has just broken the seal and will start the quest of Valkyrie!",bc_all,0x33FF66;
  11. check the getmapxp script command, that's what causing the problem.
  12. re-checked all the parts of adding custom items, you must missed something.
  13. if(getrefine() == 7) skill "AC_DOUBLE",1;
  14. 1705,Composite_Bow_,Composite Bow,5,2500,,600,29,,5,4,0xFFFFFFFF,7,2,34,1,4,1,11,{ if(getrefine()==8) bonus bStr,1; else if(getrefine()==9) bonus bAgi,1; else bonus bAllStats,1; },{},{}
  15. // give player's soul link if ( [email protected] = .spirit[BaseJob] ); else if ( Upper & 1 && BaseLevel < 70 ) [email protected] = SL_HIGH; if ( [email protected] ) { sc_start4 SC_SOULLINK, [email protected], 1, [email protected],0,0; skilleffect [email protected], 1; } change that part into this // give player's soul link if ( [email protected] = .spirit[BaseJob] ); else if ( Upper & 1 && BaseLevel < 70 ) [email protected] = 494; if ( [email protected] ) { sc_start4 SC_SPIRIT, [email protected], 5, [email protected],0,0; skilleffect [email protected], 5; }
  16. I dont think this will work on rAthena since these are not available. the Oridecon_Stone part now // automatically turn all oridecon and elunium stone into pure stone to reduce player's weight [email protected] = countitem(Oridecon_Stone); if ( [email protected] >= 5 ) { delitem Oridecon_Stone, [email protected] / 5 * 5; getitem Oridecon, [email protected] / 5; message strcharinfo(0), "Refined "+ ( [email protected] / 5 * 5 ) +" Oridecon Stones, got "+ ( [email protected] / 5 ) +" Oridecons."; } [email protected] = countitem(Elunium_Stone); if ( [email protected] >= 5 ) { delitem Elunium_Stone, [email protected] / 5 * 5; getitem Elunium, [email protected] / 5; message strcharinfo(0), "Refined "+ ( [email protected] / 5 * 5 ) +" Elunium Stones, got "+ ( [email protected] / 5 ) +" Eluniums."; } change that part into this // automatically turn all oridecon and elunium stone into pure stone to reduce player's weight [email protected] = countitem(756); if ( [email protected] >= 5 ) { delitem 756, [email protected] / 5 * 5; getitem 984, [email protected] / 5; message strcharinfo(0), "Refined "+ ( [email protected] / 5 * 5 ) +" Oridecon Stones, got "+ ( [email protected] / 5 ) +" Oridecons."; } [email protected] = countitem(757); if ( [email protected] >= 5 ) { delitem 757, [email protected] / 5 * 5; getitem 985, [email protected] / 5; message strcharinfo(0), "Refined "+ ( [email protected] / 5 * 5 ) +" Elunium Stones, got "+ ( [email protected] / 5 ) +" Eluniums."; }
  17. Script: | if(getrefine()==8) bonus bStr,1; else if(getrefine()==9) bonus bAgi,1; else bonus bAllStats,1;
  18. View File Loading Screens Chibi I made these loading screens for my past server, and now i've decided to share it with the public. Disclaimer: These images are not mine use them and not sale them. Submitter Radian Submitted 04/29/2021 Category Loading Screens Video Content Author Radian  
  19. Version 1.0.0

    71 downloads

    I made these loading screens for my past server, and now i've decided to share it with the public. Disclaimer: These images are not mine use them and not sale them.
    Free
  20. Its all good.. im not familiar with the other errors but make to remove/replace what is needed and add what is required. Yeah, it should work on a group 99 since it access all the commands added on the server, the only problem that i can think of is the compiling your trunk. since changing something from the source requires rebuild/recompile.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.