Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. you mean this ?? to Disable accinfo: false to Enable accinfo: true
  2. i think might be this.. http://trac.rathena.org/changeset/15194/rathena but why not just switch to rAthena since it is already enabled in rAthena by default
  3. what error show it.. otherwise you can try other script.. check script release section there are some script that give the same way to do a quest... i think Tr0n or Euphy has done a similar type a quest npc also..try check their topic there.
  4. Emistry

    Autocast

    bonus5 bAutoSpell,x,y,n,t,i; n/10% chance to cast skill x of level y when attacking (supports skill names) t: Trigger criteria: BF_SHORT: Trigger on melee attack BF_LONG: Trigger on ranged attack ( Default: BF_SHORT+BF_LONG ) BF_WEAPON: Trigger on weapon skills BF_MAGIC: Trigger on magic skills BF_MISC: Trigger on misc skills ( Default: BF_WEAPON ) BF_NORMAL: Trigger on normal attacks. BF_SKILL: Trigger on skills (Default: BF_SKILL if type is BF_MISC or BF_MAGIC, BF_NORMAL if type is BF_WEAPON) i: 0=cast on self 1=cast on enemy, not on self 2=use random skill lv in [1..y] 3=1+2 (random lv on enemy)
  5. use the restricted zone..and apply the correspond restricted zone mapflag... the list is displayed at previous post
  6. https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/conf/battle/skill.conf // At what dex does the cast time become zero (instacast)? castrate_dex_scale: 150
  7. 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
  8. end; <--------------------------- OnPCKillEvent:
  9. place it inside your GRF and encrypt your GRF. that should be able to help you "hide" it from other users.
  10. //BattleGround Exit. bat_b05,9,290,5[Tab]script[Tab]Exit[Tab] 653,{ callfunc "F_ClearGarbage"; //Clear outdated, unused variables mes "[battleground Manager]"; mes "Make sure the Event is finish only Exit"; mes "Do you want to leave?"; if( select("Yes:No") == 1 ) warp "prontera",44,208; close; }
  11. prontera,155,181,5 script Sample 757,{ if( !countitem(7227) ) npctalk "You need to provide me some TCG to go in."; else{ delitem 7227,1; warp "prontera",155,181; } end; }
  12. create your own tool shop npc.. then put the shop npc name into the script i provide above then ingame pm the npc [npc:Sample] blablabla
  13. v // Who can have critical attacks? (Note 3) // (Note that there are some skills that always do critical hit regardless of this) enable_critical: 1 // Note 3: Value is a bit field. If no description is given, // assume unit types (1: Pc, 2: Mob, 4: Pet, 8: Homun)
  14. we doesnt have any command like this 1 getPartyMapUsers(6) we only got getmapusers("MapName")
  15. try this ? // How much time must pass between item uses? // Only affects the delay between using items, prevents healing item abuse. Recommended ~500 ms // On officials this is 0, but it's set to 100ms as a measure against bots/macros. item_use_interval: 100
×
×
  • Create New...