Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. close2; attachrid( getcharid(3,.@name$) ); callfunc("propaganda",.@name$);
  2. Duplicated Topic : http://rathena.org/board/topic/64892-all-other-else-is-in-english-except-the-skill-effect-display-and-bm-settings/
  3. change }else if (getItemSlots(.@EQPart) > 1 { to }else if (getItemSlots(.@EQPart) >= 1 {
  4. edit here.. https://subversion.assembla.com/svn/ClientSide/Lua_Project/lua%20files/stateicon/stateiconinfo.lua
  5. i dont remember i have added a check for 99999 items.... the input command that i used here...it limited the value you can input.. so dont edit the script if you dont know what it does...else...this is what happen....
  6. Please re-edit your post....this section only allow release through diff file or attachments... cannot release anything with the usage of codebox / code tag ..... if you want request this to add in rAthena..then try here.. http://rathena.org/board/forum/16-rathena-development/
  7. http://rathena.org/board/topic/70567-peopleperson49s-scripts/
  8. run your KRO client ? otherwise download the lite kro updater client .... http://nn.nachtwolke.com/dev/rsu/
  9. try add this... if( select( "^0000FFPurchase^000000:Cancel" ) == 1 ){ if( Weight > ( MaxWeight / 2 ) ){ mes "Please make sure you are not OverWeight."; close; }
  10. as stated in the error... your setting wrong... the value cant be lowered than the default minimum value.... recheck what you have edit... and for the weaponswitch...make sure you are using rAthena..or applied the diff that added the setting...
  11. Read this... http://rathena.org/b...-easy-as-1-2-3/ or this http://rathena.org/board/forum-32/announcement-10-script-request-rules/
  12. Read this .. http://rathena.org/board/forum-30/announcement-9-scripting-support-easy-as-1-2-3/
  13. Read this... http://rathena.org/board/forum-32/announcement-10-script-request-rules/
  14. you can check this site...quite good for a beginner... you can test and learn at the same time... HTML PHP JQUERY SQL CSS JAVASCRIPT
  15. what system breed ? pallete ? go find it in graphic section
  16. if you want to warp out all the player from the map...why not use this ? OnPCKillEvent: mapannounce strcharinfo(3),"All will be warped out in 5 seconds.",0; sleep2 5000; mapwarp strcharinfo(3),"prontera",155,181; end;
  17. edit the value..... https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/clif.c #ifdef NEW_CARTS if( (type == 9 && sd->status.base_level > 131) || (type == 8 && sd->status.base_level > 121) || (type == 7 && sd->status.base_level > 111) || (type == 6 && sd->status.base_level > 101) || (type == 5 && sd->status.base_level > 90) || (type == 4 && sd->status.base_level > 80) || (type == 3 && sd->status.base_level > 65) || (type == 2 && sd->status.base_level > 40) || (type == 1)) #else
  18. erm....there is 1 way you can try... but you have to get a custom src mod that read for the remaining time for rental items...or maybe read it through SQL there... but..i am not very sure about this..since i have not try it... you can try get it here.. http://www.eathena.ws/board/index.php?showtopic=241313&view=findpost&p=1318374 create a custom script remover...add edit your current one... check for the remaining time..and delete the item...then create a new rental item with the remaining time ....
  19. what mean ? only can get 2 piece of taurus crown ? then use this to check.. if( countitem( itemID ) > 2 ){ mes "You cant have more than 2 ..."; close; } create a rental item ? rentitem <itemID>,<duration>;
  20. *getexp <base xp>,<job xp>; This command will give the invoking character a specified number of base and job experience points. Can be used as a quest reward. Negative values won't work. getexp 10000,5000; You can also use the "set" command with the constants defined in 'db/const.txt': // These 2 combined has the same effect as the above command set BaseExp,BaseExp+10000; set JobExp,JobExp+5000; You can also reduce the amount of experience points: set BaseExp,BaseExp-10000; Note that 'getexp' is now subject to the 'quest_exp_rate' config option, which adjusts the gained value. If you want to bypass this, use the 'set' method.
  21. i believe these 2 file belong to pets data....and not mob_db .... https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/pet_db.txt https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/pet_db2.txt
×
×
  • Create New...