Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. how you load the script ? just a simply @loadnpc <npc path> ?? or you restart server or @reloadscript ?? the script have to use @reloadscript / restart to make it fully take place...because there is a OnInit Label.. Ps: Make use of Codebox to wrap long content ^^
  2. but why not simply do your array like this ? save the value into 1 array ? setarray $@Box,<value>,<value>,<value>; then you can simply write a loop process for it... for( set .@i,0; .@i < getarraysize( $@Box ); set .@i,.@i + 1 ) attachrid $@Box[.@i];
  3. you can check the command list / stuff here https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/doc/script_commands.txt
  4. i think it is your patch destination problem that you set in the patch server. some detail of the neoncube patcher you can find it here http://rathena.org/wiki/NeonCube#.2Fpatcher.2Fpatchlist.txt which included how to set a correct destination for patching
  5. yes... // Note 3: Value is a bit field. If no description is given, // assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun) the number just used for the server to enable what / who can have those effect take place in game.
  6. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/battle.conf // Who can have perfect flee? (Note 3) enable_perfect_flee: 1 // Who can have critical attacks? (Note 3) // (Note that there are some skills that always do critical hit regardless of this) enable_critical: 1
  7. uhm..you can try this.. [ Pastebin ] Chain Quest + CoolDown change the cooldown here. set #CQCooldown,gettimetick(2) + 3600; // 3600 sec = 1 hour
  8. there is no command that can direct set some bonus depend on your item weight currently.. anyway....there is still a way to do this... use this command to check for the item you have equipped for the weight of the item *getiteminfo( <item ID>,6 ) and of course the itemID must be the equipped part...which you can retrieve the itemID by using this *getequipid(<equipment slot>) Sample : if( getiteminfo( getequipid(1),6 ) > 100 ){ <script content here> }; it should be like this... if a Top Headgear weight is more than 100 then the specific script will be able to run... anyway..there is alot way to script for those stuff.. like..every X weight increase damage by Y%.. just required some calculation..
  9. perhap you have a item with ID of 3 in your item_db / item_db2 folder ? beside.. in your NPC script.. maybe a NPC is checking for the item with ID of 3 ? try check what you have updated recently...then it would be easy for you to locate the problem source...
  10. careful with the 1 posted by @mnjfx.. because..inside there script..there are some forum text tag inside it... most probably it occur during he copying the script / posting the script... you just need to remove all the tag then the script should be work fine... anyway...here is another mirror for it [ Pastebin ] Hourly Item Reward
  11. something like these ? http://rathena.org/board/topic/60376-tr0ns-questboard-121/ but the above 1 didnt have the party features... and...i think you are using annieruru's mission board right? her mission board... if there is party member kill the same monster...the kill will be counted as long as the party member is in the range.. but..2.1 kinda outdate..i think annie has updated it will even higher version for it.
  12. Emistry

    Please Read

    well...same goes here...no ppl know what your problem since you didnt elaborate what your problem.. you just ask who can teamviewer for you... please elaborate more on your post..
  13. Emistry

    req. points

    change woe_points into #woe_points
  14. no...the script only stop when ur character is afk / vending / open a chatroom...
  15. change prontera,155,181,5 script Sample 718,{ to - script Sample -1,{ OnPCLoginEvent:
  16. http://rathena.org/board/topic/54189-npc-for-newbie-freebies/page__view__findpost__p__59170
  17. did you duplicated the script ? or loaded it several times ? both condition i mention will also result in wrong kill count increment... coz i also experienced this problem last time..xD the kill counter increase alot due to the duplicated wrong npc / method..
  18. for 1 week... i think it is suppose to be rentitem 12662,604800;
  19. perhap you answer is already answered at here ? "all", // comment this line to only trigger this script on these listed maps just comment out the above line....to make it work on specific map
  20. this line ? zeny -10000000 suppose to be set Zeny,Zeny -10000000;
  21. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/client.conf // Maximum allowed 'level' value that can be sent in unit packets. // Use together with the aura_lv setting to tell when exactly to show the aura. // NOTE: You also need to adjust the client if you want this to work. // NOTE: Default is 99. Values above 127 will probably behave incorrectly. // NOTE: If you don't know what this does, don't change it!!! max_lv: 99
  22. are you sure you uplaoded the correct script ? i didnt found any script part similar to the annie's script...O.O ? fixed.
  23. the grf file will read acording to the number you have set in the data.ini as you stated above.. main.grf will be read 1st before come to palettes.grf
×
×
  • Create New...