Jump to content

Emistry

Forum Moderator
  • Posts

    10015
  • Joined

  • Days Won

    396

Community Answers

  1. Emistry's post in Script for this item effect was marked as the answer   
    bonus bAtk,( readparam(bStr) / 10 );

  2. Emistry's post in Using the save function on duplicate NPCs was marked as the answer   
    why not just use getmapxy to retrieve player location when they save.... ???
  3. Emistry's post in MVP not summoning slaves, warping or healing was marked as the answer   
    edit here.. db/re/mob_skill_db.txt
    tons of example you can get inside that file....
  4. Emistry's post in PVP Timer ( Time Attack ) was marked as the answer   
    try
    mapname mapflag pvp_nocalcrank
  5. Emistry's post in @item restriction was marked as the answer   
    try
    http://upaste.me/raw/4014f6
  6. Emistry's post in Emistry's Breaker Room was marked as the answer   
  7. Emistry's post in problem client 2010-07-30 was marked as the answer   
    try this..
    http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-07-30aRagexeRE
  8. Emistry's post in How to delete char instant or just waiting like past was marked as the answer   
    edit conf/char_athena.conf#L158
    // Amount of time in seconds by which the character deletion is delayed. // Default: 86400 (24 hours) // NOTE: Requires client 2010-08-03aragexeRE or newer. char_del_delay: 86400
  9. Emistry's post in potion effect in woe was marked as the answer   
    ..........{ if( agitcheck() || agitcheck2 ) itemheal rand(55),rand(55); else itemheal rand(110),rand(110); },{},{}

  10. Emistry's post in Count Misc items and trade for a particular Item with same quantity was marked as the answer   
    you mean this ?
    http://upaste.me/raw/67135e
  11. Emistry's post in Confused on "Getinventorylist;" was marked as the answer   
    you can refer getinventorylist...
    getinventorylist; for(set .@i,0; .@i < @inventorylist_count; set .@i,.@i+1){ mes "Item : "+getitemname( @inventorylist_id[.@i] ); mes "Refine : "+getitemname( @inventorylist_refine[.@i] ); mes "Card 1: "+getitemname( @inventorylist_card1[.@i] ); mes "Card 2: "+getitemname( @inventorylist_card2[.@i] ); mes "Card 3: "+getitemname( @inventorylist_card3[.@i] ); mes "Card 4: "+getitemname( @inventorylist_card4[.@i] ); mes " "; }
  12. Emistry's post in whats the prob in my crafting shop was marked as the answer   
    mes "You gained 1 "+getitemname( .@i )+".";
    getitem .@i,1;

  13. Emistry's post in Request count item in server was marked as the answer   
    it should be like this...http://upaste.me/raw/54d5fb
     
    and..you are unable to do a realtime count since saving data into database required some time or event to trigger it.
  14. Emistry's post in Default Resistance was marked as the answer   
    conf/battle/status.conf#L27
    // Adjustment for the natural rate of resistance from status changes. // If 50, status defense is halved, and you need twice as much stats to block // them (eg: 200 vit to completely block stun) pc_status_def_rate: 100 increase the value ....
  15. Emistry's post in How to Fix This? was marked as the answer   
    you can follow the guide given here to check your client date.
    http://www.openkore.com/index.php/ServerType
    refer the Compilation Date..
  16. Emistry's post in Request NPC that can check cash point or kafra point of player was marked as the answer   
    try
    http://upaste.me/raw/848a4e
  17. Emistry's post in change inventory size was marked as the answer   
    Favorite_tab#Msgstringtable
    rename these
    Line: 1466 = Usable Items Line: 1472 = Etc. Items Line: 2051 = Equipment Line: 2052 = Personal/Favourite Tab
  18. Emistry's post in how to change Doppelganger Card effect was marked as the answer   
    db/re/item_db.txt
    4142,Doppelganger_Card,Doppelganger Card,6,20,,10,,,,,,,,2,,,,,{ bonus bAspdRate,100; },{},{}
  19. Emistry's post in Once per 7 days item giver was marked as the answer   
    try
    http://upaste.me/raw/57c381
  20. Emistry's post in Tarot of fate skill problem. was marked as the answer   
    skill_break_equip(src,bl, where[rnd()%3], 10000, BCT_ENEMY);

  21. Emistry's post in How do i put delay to all atcommand when attacked? was marked as the answer   
    you can refer this @go_delay_when_hit
    then apply the same changes to other command...
  22. Emistry's post in Quest for 3rd job was marked as the answer   
    try
    http://upaste.me/raw/6b21aa
  23. Emistry's post in How to wipe specific card in sql was marked as the answer   
    UPDATE `inventory` SET `card0` = 0 WHERE `card0` = 4001; UPDATE `inventory` SET `card1` = 0 WHERE `card1` = 4001; UPDATE `inventory` SET `card2` = 0 WHERE `card2` = 4001; UPDATE `inventory` SET `card3` = 0 WHERE `card3` = 4001; try this.
  24. Emistry's post in How Can I Change 30 Minutes Into 3 Hours For Each Game was marked as the answer   
    OnMinute20: change to
    OnMinute20: if( gettime(3) % 3 != 0 ) end;
  25. Emistry's post in Revive in custom? was marked as the answer   
    OnPCDieEvent: if( isequipped( 5353 ) ){ recovery 0; } end; you can do like this ......
×
×
  • Create New...