Jump to content

heroji

Members
  • Content Count

    50
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by heroji

  1. I'm a newbie too but i'll try to help you with the first one.. prontera,168,173,4 script asdas 10248,{ if (BaseLevel == 99 || Joblevel == 70) {// level getitem 7539, 1;// reward id, num; announce "msg";//msg end; } }
  2. Is it the upside down status? if yes.. Try sc_end SC_ILLUSION
  3. Hello it's me again I cannot find a solution for this problem (I'm newbie), i want to make variable number of items to exchange for 1 points.. es: exchange 2 poring coins for 1 cash point. script: mes @npcname$; mes "How many points would you like to exchange?"; next; input @cantidad; mes @npcname$; mes " [^F79F81"+@cantidad+"^000000] ^F79F81PC^000000 Is that okay?"; next; menu "Yes",-,"No",L_Cancel; if ( countitem(7539) < @cantidad) goto L_NoPC; delitem 7539,@cantidad; set #CASHPOINTS, #CASHPOINTS + @cantidad; mes @npcname$; mes "Alright, here you go! Let me know if you need my services again!"; close2; cutin "",255; end;
  4. heroji

    ASPD start

    Solved: problem was the job_db.conf
  5. heroji

    race_resist

    nice idea but bugged? https://imgur.com/MS05qqz
  6. heroji

    Base aspd 196?

    can you please tell how did you fix?
  7. heroji

    ASPD start

    Hi guys i changed player.conf to max aspd 194 but when i create a new player starts already with 194.. https://imgur.com/FVjYFDs
  8. I have this problem too and i have found this solution but i think this one is outdated, i can't get it work, you can try.. https://herc.ws/board/tracker/issue-8046-cart-disappearance/
  9. I have found a solution here:
  10. I got this error when trying to recompile please help me.. https://imgur.com/vtbrx73
  11. Hello i'm a newbie..I recently disabled renewal config and i found something strange on champ's skills, i can't cast asura strike and when i use explosion spirits it activate also abrasive effect? i checked the skill_db.conf and seems normal..so i dont know..
  12. heroji

    @size for mobs?

    Hello just want to ask if its possible to use @size on monsters like @size <mob id>..
  13. Thank you for this mod I love it!
  14. Hello i'm a newbie i want to ask if it possible to change the "kafra credit point" message that appear on the chat? "You don't have enough <name> " prontera,166,170,3 trader Dealer 10297,{ OnInit: tradertype(NST_CUSTOM); sellitem Poring_Card,1; end; // Here you configure the item you will need to purchase OnCountFunds: setcurrency(#KAFRAPOINTS); end; // Pays the value in bronze coins OnPayFunds: if( #KAFRAPOINTS < @points ) end; #KAFRAPOINTS -= @price; purchaseok(); end; } This is the script i use maybe modifying NST_CUstom but dont know where to find...
  15. Finally i found you intruder! haha Thank you @Kenpachi!
  16. i have found this topic https://herc.ws/board/topic/11042-add-skills-through-scripts/ I have installed the pluglin OnPCStatCalcEvent and run this script by @AnnieRuru but seems not working when i add skill and changed equip, nothing happen.. prontera,155,185,5 script kjdshfkdjsf 1_F_MARIA,{ addjobskill = 0; mes "select the type of skills you want to learn"; next; addjobskill = select( "swordsman", "mage", "acolyte" ); mes "your skills will be added the next time you adjust your equipment !"; close; OnPCStatCalcEvent: switch ( addjobskill ) { case 1: skill "SM_BASH", 10; skill "SM_PROVOKE", 10; skill "SM_MAGNUM", 10; break; case 2: skill "MG_FIREBOLT", 10; skill "MG_LIGHTNINGBOLT", 10; skill "MG_COLDBOLT", 10; break; case 3: skill "AL_HEAL", 10; skill "AL_INCAGI", 10; skill "AL_BLESSING", 10; break; default: } end; }
  17. You're the best sir! Thank you
  18. prontera,166,170,1 trader Potion Seller 4_F_EDEN_OFFICER,{ OnInit: tradertype(NST_CUSTOM); sellitem Poring_Card,1; end; // Here you configure the item you will need to purchase OnCountFunds: setcurrency(#KAFRAPOINTS); end; // Pays the value in bronze coins OnPayFunds: if( #KAFRAPOINTS < @points ) end; #KAFRAPOINTS -= @points; purchaseok(); end; } Hello i have a problem when i try to buy the card the kafra points remains the same.. dont know why 😕 can someone help me please..
  19. suddenly appeared where can i find it.. thanks
  20. yeah finally i got it! removing the file string was not enough, you have to modify the .bmp to transparent background..
  21. Hello can someone help me to find these file and remove it?
  22. Hi im new btw thanks for this guide! I have a question i want to remove this npc or hide it, can you help me? ty
×
×
  • Create New...

Important Information

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