Jump to content

BabaVoss

Members
  • Posts

    79
  • Joined

  • Last visited

About BabaVoss

  • Birthday 10/29/1992

Profile Information

  • Gender
    Male
  • Location
    Philippines
  • Server
    Amber
  • Github: na
  • Discord: na
  • Interests
    na

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

BabaVoss's Achievements

Metaling

Metaling (6/15)

  • Collaborator
  • Reacting Well
  • First Post
  • Conversation Starter
  • Dedicated

Recent Badges

0

Reputation

  1. Have you fix this already? If so, can u share how?
  2. good day @Playtester @PedroProplayer can you guys share how to make this work? I wanted to stop NDL and chainskill with this method. thank you for example, BOLTS, all bolts should share the same cooldown. I am using Cooldown function on skill db, each skill will have different cd.
  3. Good day guys, how do i customize min_skill_delay_limit of skill.conf i wanted to break chain skill for some jobs like professor, wiz and etc, but when i set this up. Some jobs like Champion cannot use dangerous + critical explosion + dangerous very well. is it possible to make specific job exception for this configure? thank you
  4. Thank you for your help! it work! @Winterfox - script LAST_HIT_MONSTER FAKE_NPC,{ OnInit:
  5. Good day Rathena! Im trying to create an event, which is Last Hit event. Basically it works just like a normal player killing a mob, but the last hit will get the prize. im using a mob that takes 1 damage only, for example @monster 1915, and put a item drop on it. but the problem is, the player that made the last hit/killed it, doesnt get the prize. but the one who made too much damage. can anyone help me to create this event? thank you
  6. how do i fix this? this is the script on pc.c if (map_getcell( sd->bl.m, sd->bl.x, sd->bl.y, CELL_CHKPVP ) && battle_config.cellpvp_deathmatch && sd->state.pvp) { add_timer(tick+battle_config.cellpvp_deathmatch_delay, pc_deathmatch_timer, sd->bl.id, 0); return 1|8; }
  7. Good day guys, do you guys know where we can buy andro client for our ragnarok servers? i would like to release my server to android version too. thanks
  8. Good day guys, how do i make this delay_dependon_agi to just maximum of 95% acd only? thank you
  9. copy, this script works with my server. it is attach to a freebie npc per account, apparently i dont know how to attach this to this gold room warper npc, and to be able to clear it once the cooldown is done. TOWN,45,65,5 script Welcome Reward 871,{ .@unique_id$ = get_unique_id(); if($reward_status > 0 || $reward_count < 1){ mes "[ Reward NPC ]"; mes "Sorry, but the this rewards are out. Better luck next time."; close; } if(getd("$ID_" + .@unique_id$) > 0 || #NPCREWARD1 > 0){ mes "[ Reward NPC ]"; mes "You have already claimed your reward."; close; }
  10. good day, can anyone help fixing this script. it works fine, but the purpose of this script is to not abuse gold room. this script can be by pass with making new account. Can anyone help make this PER UNIQUE ID? critown,134,138,6 script gold room 456,{ function t { function s; set .@left, getarg(0); if ( .@left <= 0 ) return getarg(0); set .@day, .@left / 86400; set .@hour, .@left % 86400 / 3600; set .@min, .@left % 3600 / 60; set .@sec, .@left % 60; return ( ( .@day ? .@day +" day"+ s( .@day ) : "" ) + ( .@hour ? .@hour +" hour"+ s( .@hour ) : "" ) + ( .@min ? .@min +" min"+ s( .@min ) : "" ) + ( .@sec ? .@sec +" sec"+ s( .@sec,1 ) : "" )); function s { return ( ( getarg(0) > 1 ? "s" : "" ) + ( getarg(1,0) ? "" : " " ) ); } } if ( gltimer <= 0 && enter_gold_room < gettimetick(2) ) { set gltimer, .glt; enter_gold_room = gettimetick(2) + 86400 * .dly; } else if ( enter_gold_room > gettimetick(2) && gltimer <= 0 ) { mes "I'm sorry you can't enter in the gold room. You must wait "+ t( enter_gold_room - gettimetick(2) )+"."; close; } mes "You have "+t( gltimer )+" remaining."; select( "enter in the gold room" ); warp .map$,0,0; attachnpctimer; initnpctimer; end; OnTimer1000: if( playerattached() ){ if(strcharinfo(3)!=.map$) { stopnpctimer; end; } set gltimer, gltimer-1; if( gltimer <= 0 ) { stopnpctimer; warp "prontera",0,0; message strcharinfo(0), "end of time for the gold room"; end; } else setnpctimer 0; } end; OnInit: set .dly , 7 ; //Delay in days. set .glt , 1800 ; //Gold Room Timer in seconds. set .map$, "geffen" ; // end; }
  11. Good day rathena! Can i rrquest for a script that gives bonus effect on jobs. For example, job professor will have 50% reduce aftercast delay when having base 150 int. Thank you!
  12. im sorry i dont think i do have db backup for the last week. but im using myphpadmin sql, does it have back up logs?
  13. good day guys, can anyone help me how to roll back a server for a 1 week. there was a bug on an npc, everybody bought an item for free. and theres a lot who have bought already. i wanted to do a 1 week rollback. can anyone help pls? thanks
  14. thank you for your reply, I dont want it to be attach on items. Is there other way?
  15. Hi guys is it possible to make a function script or like onpcloginevent script or OnPCStatCalcEvent script - script agibase -1,{ OnPCLoginEvent: if (readparam(bAgi)>=150) bonus bDelayRate,-90; end; }
×
×
  • Create New...