Jump to content

domez86

Members
  • Posts

    207
  • Joined

  • Last visited

Everything posted by domez86

  1. random monster pls ^_^ not specific monster.
  2. ok, sorry. hi, there is a way to not open the menu with the @?when I make a command like @go the menu at the top left opens.thank you.i use rathena.
  3. hi, there is a way to not open the menu with the @? when I make a command like @go the menu at the top left opens. thank you. i use rathena.
  4. help me for script @summon random monster? prt_in,64,140,3 script Summoner 860,{ atcommand "@summon "random id" "seconds""; }
  5. hi, correct my error pls: expected: " ; " line: cleanmap .gold$,88,111,168,191; tnx
  6. not work, error at line fist close;
  7. thanks, can you give me npc, without the bale level 175 restriction?
  8. only 3rd is this? if ( !(eaclass() & EAJL_THIRD)) {
  9. but only this? or with @eac = eaclass(); if (!(.@eac&EAJL_THIRD) || BaseLevel < 175) {
  10. unmatched ")" if (!(.@eac&EAJL_THIRD)) {
  11. guys but what is the script that to even just click an NPC you have to have the third class? thank you. ex: ------------------------------------------------------------------------------ prontera,150,150,4 script npc 92,{ mes "Hello"; close; } ------------------------------------------------------------------------------- clickable only by the third classes, thanks.
  12. not work....not error but not work....but if instead of that I would like only the limitation to the third class? .@eac = eaclass(); if (!(.@eac&EAJL_THIRD) || BaseLevel < 175) {
  13. not work.....I tried with Creator class, still allows to talk to the NPC.
  14. hi, I can ask if it adds to this npc the possibility to access it only if you have a 3rd class? maybe if you do not have the 3rd class it tells you: "I'm sorry, but you do not have 3rd class." Thanks in advance. -------------------------------------------------------------------------------------------------------------------------------------------------------- prontera,147,174,5 script Change Dress 509,{ mes "[Armando]"; mes "Hi "+strcharinfo(0)+" do you want to change your dress?"; next; switch(prompt("Primary Dress:Second Dress")) { case 1: next; atcommand "+bodystyle 0"; mes "Done!"; close; case 2: next; atcommand "+bodystyle 1"; mes "Done!"; close; case 255: mes "[Kasondra]"; mes "Goodbye."; close; } } -----------------------------------------------------------------------------------------------------
  15. error in line: if (!(.@eac&EAJL_THIRD) && BaseLevel < 175) {
  16. hi, could you tell me how to insert in this npc that can only be used by third and base level 175? maybe with a message: "Sorry, you have to have a third class and base level 175." ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- prontera,198,148,3 script Test 860,{ mes ( "restertstat") ; atcommand "+resetstat"; next; mes ( "remove stpoint"); StatusPoint = 0; next; mes ( "apply st point"); StatusPoint += 25000; mes ( "done"); mes ("congratulations! now you're at max! "); close; } ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ tnx for all!
  17. hi, could someone help me to create this npc precisely? Thanks in advance! --------------------------------------------------------------------------------------------------------------------------------------------- message: Hi, I'm the master statpoint! Only the third classes lv.175 can continue! script: if you are third class and base lvl 175: message; Do you want the max? keys: yes/no script: if you choose "yes": message: well! let's start by resetting all the stat! key: continue -->@allstat -255 or @setallstat =1 message: done! key: continue message: now we reset your stat points! key: continue -->@stpoint -50000 or setstatpoint=0 message: done! key: continue message: now we just have to add stat point for max 2 stat to 255! key: continue --> @stpoint +27000 done! key: continue message: congratulations! now you're at max! key: close npc script:if you choose "no": message: bye! key: close npc script: if you have already used it: ( a system to use it only once based on the char id )(detect id char even if I restart the server?) message: Sorry, you have already used it! key:close script: if you are not third class and base lvl 175: message: You not have a requirement, bye! key: close npc ------------------------------------------------------------------------------------------------------------------------------------ tnx for all!
  18. prontera,198,163,5 script master statpoint 495,{ mes ( "Hi, I'm the " + strnpcinfo(0) + " !" ) ; if ( (eaclass()&EAJL_THIRD ) && ( BaseLevel > 174 ) && StatNPCused = 0 ) { mes ( "Do you want to max your StatusPoint?" ); next; switch(select( "Yes","No" )) { case 1: mes ( "well! let's start by resetting all the stat! " ); if ( readparam(bStr) > 1 ) { atcommand "@Str -"+(readparam(bStr)- 1); } if ( readparam(bAgi) > 1 ) { atcommand "@Agi -"+(readparam(bAgi)- 1); } if ( readparam(bVit) > 1 ) { atcommand "@Vit -"+(readparam(bVit)- 1); } if ( readparam(bInt) > 1 ) { atcommand "@Int -"+(readparam(bInt)- 1); } if ( readparam(bDex) > 1 ) { atcommand "@Dex -"+(readparam(bDex)- 1); } if ( readparam(bLuk) > 1 ) { atcommand "@Luk -"+(readparam(bLuk)- 1); } mes ( "done!"); next; mes ( "now we reset your stat points!"); StatusPoint = 0; mes ( "done!"); next; mes ( "maxed out 2 selected stat to max!") ; next; mes ( "Increasing StatusPoint!"); StatusPoint += 25000; mes ( "Done!"); next; mes ("congratulations! now you're at max! "); StatNPCused = 1; close; case 2: mes ( "Oh well have fun!"); close; } close; type this, but not work...
  19. sorry but not work your npc ? however, the passage of the choice of the stat was not needed, it was enough to give stat points later and then everyone chose which stat to raise.
  20. Hi, is there anyone who could create this npc? _________________________________________________ Hi, I'm the master statpoint! Only the third classes lv.175 can continue! if you are third class and base lvl 175: Do you want the max? keys: yes/no if you choose "yes": well! let's start by resetting all the stat! key: continue @allstat -255 or setallstat =1 done! key: continue now we reset your stat points! @stpoint -5000 or setstatpoint =0 done! key: continue now we just have to add stat point for max 2 stat to 255! key: continue @stpoint +25000 done! key: continue congratulations! now you're at max! key: close if you choose "no": hello! key: close if you have already used it: Sorry, you have already used it! key:close ______________________________________________ With the possibility to use it only if you are third class with base lvl 175 and to be able to use it once only not based on the account id but based on the char id, thanks!
×
×
  • Create New...