Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. OnSpecialKill: switch(rand(8)) { case 0: getitem $@ItemID,$@Amount; break; case 1: getitem 969,100; break; case 2: getitem 12221,1; break; case 3: getitem 12210,1; break; case 4: getitem 12114,1; break; case 5: getitem 12114,1; break; case 6: getitem 12115,1; break; case 7: getitem 12116,1; break; case 8: getitem 12117,1; break; } where is the END command ? put below end;
  2. 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 // Level required to display an aura. // NOTE: This assumes that sending max_lv to the client will display the aura. // NOTE: aura_lv must not be less than max_lv. // Example: If max_lv is 99 and aura_lv is 150, characters with level 99~149 // will be sent as being all level 98, and only characters with level // 150 or more will be reported as having level 99 and show an aura. aura_lv: 99 or diff your client to disable it.
  3. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/groups.conf
  4. OnMinute02: OnMinute10: OnMinute20: OnMinute30: OnMinute05: OnMinute55: OnMinute59: OnMinute00:
  5. if you want the NPC change it upon clicked.. the the simplest way ever..... put it below the header of npc...
  6. just edit like this in your item_db itemID,.............,{ getitem 607,1; getitem 607,1; getitem 607,1; getitem 607,1; },{},{} if create another new box.. http://rathena.org/wiki/Custom_Items
  7. http://rathena.org/wiki/index.php?search=setup&title=Special%3ASearch
  8. why still need to apply on rA? isnt rA already got a similar 1 ? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/db/mob_item_ratio.txt
  9. you can try this if you want. made this not long ago. http://pastebin.com/raw.php?i=z8tt9Qy4
  10. http://supportmii.com/ro1/Clients/ download the client date you want.. download the diffpatcher.. download the client bypass thing.. http://supportmii.com/ro1/Clients/Bypass_Clients/Waeyan/ download the setup.exe if necessary ....
  11. just find that line inside the script and remove it mes "Location : ^0000FF"+.Map$+"^000000";
  12. what event can be activated at the same time ?? what event queue 1 ~ 5 ... explain all these stuff... what thing you read long time ago... we dont know .....
  13. you didnt know how to add a @mail command ? then how come this will work on your normal player in game ? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/groups.conf main: true
  14. if dont have then download a new 1 ....link has been provided above ....
  15. disable your @mail commands in your group.conf setting..and load this script. - script Sample -1,{ OnInit: bindatcmd("mail","Sample::OnAtcommand"); end; OnAtcommand: if( strcharinfo(3) == "mapname" ){ message strcharinfo(0),"Mail Disabled here."; }else openmail; end; }
  16. Emistry

    Grand Cross

    maybe it is this part ?? https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/src/map/battle.c if( skill_num == CR_GRANDCROSS || skill_num == NPC_GRANDDARKNESS ) { //Apply the physical part of the skill's damage. [skotlex] struct Damage wd = battle_calc_weapon_attack(src,target,skill_num,skill_lv,mflag); ad.damage = battle_attr_fix(src, target, wd.damage + ad.damage, s_ele, tstatus->def_ele, tstatus->ele_lv) * (100 + 40*skill_lv)/100; if( src == target ) { if( src->type == BL_PC ) ad.damage = ad.damage/2; else ad.damage = 0; } }
  17. try remove this when you diff your client ??
  18. there are alot Newbie / Freebies script out there... either Account Based / Character Based...all are there already. search for it. * Ops...didnt saw Euphy's Link *
  19. http://rathena.org/wiki/SQL_Installation main.sql and log.sql is needed usually...mob_db / item_db are optional unless you use SQL db ... sometime you have run those svn update sql also. other...erm...the rest i think nope..unless you got custom sql table
  20. it is account based also .... #NewbieGift
×
×
  • Create New...