Jump to content

hendra814

Members
  • Posts

    1281
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by hendra814

  1. First, What client are you use?
  2. please see at the description 0 mean not show any announces at all try look at you server configuration, how your mvp card drop rate try using command @mi example @ mi maya / @mi phreeoni then change o into the value what you want. I'm using 2 mean, all drop item below or same rate 0.02% will be announce // Make broadcast ** Player1 won Pupa's Pupa Card (chance 0.01%) *** // This can be set to any value between 0~10000. // Note: It also announces STEAL skill usage with rare items // 0 = don't show announces at all // 1 = show announces for 0.01% drop chance items // 333 = show announces for 3.33% or lower drop chance items // 10000 = show announces for all items rare_drop_announce: 2
  3. Here, i'm already make it for my own //===== rAthena Script ======================================= //= Healer //===== By: ================================================== //= Euphy //===== Current Version: ===================================== //= 1.1 //===== Compatible With: ===================================== //= rAthena Project //===== Description: ========================================= //= Basic healer script. //===== Additional Comments: ================================= //= 1.0 Initial script. //= 1.1 Aligned coordinates with @go. //============================================================ prontera,151,187,5 script Healer 742,{ mes "[Healer]"; mes "I have amazing healing powers!!"; mes "You look like a person who needs them"; mes "Want some?"; next; if (select("Heal:No thanks") == 2) { mes "[Healer]"; mes "Allright, come back if you need a heal."; end; } set .@Price,0; // Zeny required for heal set .@Buffs,0; // Also buff players? (1: yes / 0: no) set .@Delay,0; // Heal delay, in seconds if (@HD > gettimetick(2)) end; if (.@Price) { message strcharinfo(0),"Healing costs "+callfunc("F_InsertComma",.@Price)+" Zeny."; if (Zeny < .@Price) end; if(select("^0055FFHeal^000000:^777777Cancel^000000") == 2) end; set Zeny, Zeny-.@Price; } specialeffect2 EF_HEAL2; percentheal 100,100; if (.@Buffs) { specialeffect2 EF_INCAGILITY; sc_start SC_INCREASEAGI,240000,10; specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10; } if (.@Delay) set @HD, gettimetick(2)+.@Delay; end; } // Duplicates //============================================================ alberta,25,240,6 duplicate(Healer) Healer#alb 742 aldebaran,135,118,6 duplicate(Healer) Healer#alde 742 amatsu,200,79,4 duplicate(Healer) Healer#ama 742 ayothaya,207,169,6 duplicate(Healer) Healer#ayo 742 comodo,184,158,6 duplicate(Healer) Healer#com 742 einbech,57,36,6 duplicate(Healer) Healer#einbe 742 einbroch,57,202,6 duplicate(Healer) Healer#einbr 742 geffen,115,72,6 duplicate(Healer) Healer#gef 742 gonryun,156,122,6 duplicate(Healer) Healer#gon 742 hugel,89,150,6 duplicate(Healer) Healer#hug 742 izlude,121,150,6 duplicate(Healer) Healer#izl 742 //Pre-RE: (125,118) jawaii,250,139,4 duplicate(Healer) Healer#jaw 742 lighthalzen,152,100,6 duplicate(Healer) Healer#lhz 742 louyang,226,103,4 duplicate(Healer) Healer#lou 742 manuk,272,144,6 duplicate(Healer) Healer#man 742 mid_camp,203,289,6 duplicate(Healer) Healer#mid 742 moc_ruins,72,164,4 duplicate(Healer) Healer#moc 742 morocc,153,97,6 duplicate(Healer) Healer#mor 742 moscovia,220,191,4 duplicate(Healer) Healer#mos 742 niflheim,212,182,5 duplicate(Healer) Healer#nif 742 payon,179,106,4 duplicate(Healer) Healer#pay 742 rachel,125,116,6 duplicate(Healer) Healer#rac 742 splendide,201,153,4 duplicate(Healer) Healer#spl 742 thor_camp,249,74,4 duplicate(Healer) Healer#thor 742 umbala,105,148,3 duplicate(Healer) Healer#umb 742 veins,217,121,4 duplicate(Healer) Healer#ve 742 xmas,143,136,4 duplicate(Healer) Healer#xmas 742 yuno,164,45,4 duplicate(Healer) Healer#yuno 742 // Duplicates (Renewal) //============================================================ brasilis,194,221,6 duplicate(Healer) Healer#bra 742 dewata,195,187,4 duplicate(Healer) Healer#dew 742 dicastes01,201,194,4 duplicate(Healer) Healer#dic 742 ecl_in01,45,60,4 duplicate(Healer) Healer#ecl 742 malangdo,132,114,6 duplicate(Healer) Healer#mal 742 malaya,227,204,6 duplicate(Healer) Healer#ma 742 mora,55,152,4 duplicate(Healer) Healer#mora 742
  4. - script #mvp_drop -1,{ OnNPCKillEvent: set .itemrew, 7539; if (getmonsterinfo( killedrid, MOB_MVPEXP )) {// If mob has MOB_MVPEXP, it's an MVP. if (rand(100) < 50) {//chnage % as your needs getitem .itemrew,1; // your item id here announce "Player ["+ strcharinfo(0) +"] has killed "+ getmonsterinfo( killedrid, MOB_NAME ) +" and Got "+getitemname(.itemrew)+" at "+ strcharinfo(3),0; } end; } end; }
  5. Ops sory, change this announce "Player ["+ strcharinfo(0) +"] has killed "+ getmonsterinfo( killedrid, MOB_NAME ) +" and Got Apple at "+ strcharinfo(3),0,0x00FF00; } into this announce "Player ["+ strcharinfo(0) +"] has killed "+ getmonsterinfo( killedrid, MOB_NAME ) +" and Got Apple at "+ strcharinfo(3),0; }
  6. try this - script #mvp_drop -1,{ OnNPCKillEvent: if (getmonsterinfo( killedrid, MOB_MVPEXP )) // If mob has MOB_MVPEXP, it's an MVP. if (rand(100) < 50) //chnage % as your needs getitem 512,1; // your item id here announce "Player ["+ strcharinfo(0) +"] has killed "+ getmonsterinfo( killedrid, MOB_NAME ) +" and Got Apple at "+ strcharinfo(3),0,0x00FF00; } end; }
  7. I think you must put item detail in sql database (item_db2_re), because roulette item read from db too (db_roulette)
  8. try this put at data\sprite\Àΰ£Á·\¸öÅë\³² folder Ãʺ¸ÀÚ_³²_1.act Ãʺ¸ÀÚ_³²_1.spr btw, what job is this, on my data.grf default without _1
  9. try this - script hourlypoints -1,{ //--Start of the Script OnPCLoginEvent: attachnpctimer ""+strcharinfo(0)+""; initnpctimer; end; OnTimer30000: //Check if Vending (normal or @at) if(checkvending() >= 1) { dispbottom "The hourly badge rewards has stopped because you were vending . Please relog if you wish to start again."; stopnpctimer; end; } //Check if Idle getmapxy( .@map$, .@x, .@y, 0 ); if(@map$ == .@map$ && @x == .@x && @y == .@y) { set @afk, @afk + 1; } //If move timer resets else { set @afk, 0; } set @map$, .@map$; set @x, .@x; set @y, .@y; //Idle Check for 5 Minutes if(@afk == 10) { dispbottom "The hourly points event stopped because you were idle for 5 minutes. Please relog if you wish to start again."; stopnpctimer; end; } end; OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute if(@minute == 60){ set @minute,0; getitem 7859,1; dispbottom "You received 1 "+getitemname( 7859 )+" by staying ingame for 1 hour."; set @consecutive_hour, @consecutive_hour + 1; } //Check for 12 hours consecutive if(@consecutive_hour == 5) { set @consecutive_hour,0; getitem 7859,5; dispbottom "You received 5 "+getitemname( 7859 )+" by staying ingame for consecutive of 5 hours."; } stopnpctimer; initnpctimer; end; }
  10. ok, thanks for the info, i will patch it too after this.
  11. yes i already tried, same with you got crash when at hairstyle 30 and so on. but nemo by @4144 already fix this option https://gitlab.com/4144/Nemo/commit/0cebc71eef2f50478d6fcb8d7619ccbec851b510 and https://gitlab.com/4144/Nemo/commit/cd058bebee00e893a1d3ddee0b064f7a75cdf741 So i will try it later go to your src\custom\defines_pre.hpp change into like this // Copyright (c) rAthena Dev Teams - Licensed under GNU GPL // For more information, see LICENCE in the main folder #ifndef _CONFIG_CUSTOM_DEFINES_PRE_HPP_ #define _CONFIG_CUSTOM_DEFINES_PRE_HPP_ /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/config/ **/ #define PACKETVER 20180307 #endif // _CONFIG_CUSTOM_DEFINES_PRE_HPP_
  12. In indonesia ragnarok official server to change trans job you must buy "Heroic Stone" at item mall (cash shop) how about give zeny cost into player when he/she want rebirth their char.
  13. try this guide for changing max level https://gist.github.com/cydh/d82a06472f12c4ec7f38ab3de22fe86b
  14. discord channel https://rathena.org/discord what do you want to customize? npc at npc folder edit npc_custom.conf remove // if you want the npc available in the game.
  15. whenever i equip this costume the char becomes unclickable and hp bar seems to move on its own lol.. Yes, sometime got buggy like that, i don't know what happening.
  16. Rathena server or rathena fluxcp? maybe you should ask in fluxcp discord too for quick respon. here link to discrod https://discord.gg/JT3mD3t
  17. are you using rathena fluxcp? because i'm try with rathena flux cp it's works. and that's error appear when you create vote site or how?
  18. are you alredy import 2 file sql in this folder voteforpoints Feefty\schemas\logindb - cp_vfp_logs.1.sql - cp_vfp_sites.1.sql
  19. What version addons are you use? Jaypee or Feety v4p addons?
  20. sorry @crazyarashi is this file https://github.com/zackdreaver/ROenglishRE/blob/master/System/CheckAttendance.lub
  21. Just want to make it sure. Is it posible to change attendance.yml content into my own desire? if is it possible, how to do it? because i got error when change attendance.yml when the structure not the same with rathena version. example change into
×
×
  • Create New...