Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/06/19 in all areas

  1. View File Healer - Selective Buff A healer that allow player to receive the buffs they want. Player could decide the combination of buff they want. * Notes: For demo purpose, I only write a simple script to demo the rough idea, imagine the buff system you could do with your own creative imagination. Feel free to share with us if you have any nice idea. Preview: Submitter Emistry Submitted 01/05/19 Category Utilities Video https://youtu.be/UCMRzmql5To Content Author Emistry  
    1 point
  2. View File TreeOfSavior Tombstone With Numbers MiniGame script header //===== rAthena Script ======================================= //= Tree Of Savior 'Tombstone With Numbers' //===== By: ================================================== //= Sader1992 //https://rathena.org/board/profile/30766-sader1992/ //https://github.com/sader1992/sader_scripts //= Email [email protected] //===== Compatible With: ===================================== //= rAthena Project //============================================================ //= Variables Info: //= 'COOLDOWN_TOMBSTONE_WITH_NUMBERS' the cool-down timer //============================================================ //= Description: //= This NPC is in a lot of tree of savior maps //= with deferent attempt number and deferent rage //= the rewards normally buff/items //= the NPC cool-down on winning is 20min and on losing is none //= if you want more than 1 copy from this NPC you need to use deferent variable for each NPC , or else they will share the same cool-down. //============================================================ Submitter sader1992 Submitted 01/06/2019 Category Games, Events, Quests Video Content Author sader1992  
    1 point
  3. - script OnlineReward#1 -1,{ //--Start of the Script OnPCLoginEvent: attachnpctimer ""+strcharinfo(0)+""; initnpctimer; end; OnTimer30000: //Check if Vending (normal or @at) if(checkvending() >= 1) { dispbottom "The rewards has stopped because you were vending . Please relog if you wish to start again."; stopnpctimer; end; } OnTimer60000: set @minute, @minute + 1; //Check for 1 Minute if(@minute == 1 && (strcharinfo(3) == "prontera" || strcharinfo(3) == "payon")){ set @minute,0; set #CASHPOINTS,#CASHPOINTS+100; dispbottom "You received 100 Cash Points. Current Cash Points: " + #CASHPOINTS; } stopnpctimer; initnpctimer; end; } if(@minute == 1 && (strcharinfo(3) == "prontera" || strcharinfo(3) == "payon")){
    1 point
  4. prontera,153,173,3 script Porteiro 4_M_PIERROT,{ if(!getcharid(2)) { mes "Você não está em um clã!"; close; } switch(select("Abrir casa do clã","Entrar na casa","Cancelar")) { case 1: instance_create("Casa do Clã",IM_GUILD); end; case 2: switch( instance_enter("Casa do Clã") ) { case IE_OTHER: mes "An unknown error occurred."; close; case IE_NOINSTANCE: mes "Memorial Dungeon " + .@md_name$ + " does not exist."; mes "No guild member has created the Memorial Dungeon."; close; case IE_NOMEMBER: mes "Only guild members can enter the Memorial Dungeon."; close; case IE_OK: mapannounce "prontera", "" + strcharinfo(0) + " entrou na casa do clã " + getguildname( getcharid(2) ) + ".", bc_map,0xFF99,FW_NORMAL,12; end; } case 3: end; } } \db\import\instance_db.txt 51,Casa do Clã,3600,300,alberta_in,114,134 Isso deve dar para você ter noção. (não testei)
    1 point
  5. Oi! Você pode encontrar a lista de comandos, funcionalidades e exemplos em \doc\script_commands.txt. Dá pra estudar bem por lá. A instância do bafomé selado (SealedShrine) e todas as outras ficam na pasta \npc\instances e \npc\re\instances (caso seu server seja renewal). Instâncias são criadas com o comando instance_create, todas as instâncias da pasta usam a opção de grupo, mas é possível criar para guild também. Você pode criar um item e ligar um script nele usando o comando callfunc, por exemplo o item Cartão Kafra: 12211,Kafra_Card,Kafra Card,2,2,,10,,,,,0xFFFFFFFF,63,2,,,,,,{ callfunc "F_CashStore"; },{},{} Boa sorte!
    1 point
  6. Version 1.1

    741 downloads

    A healer that allow player to receive the buffs they want. Player could decide the combination of buff they want. * Notes: For demo purpose, I only write a simple script to demo the rough idea, imagine the buff system you could do with your own creative imagination. Feel free to share with us if you have any nice idea. Preview:
    Free
    1 point
  7. in my opinion I think there is to much going on in "OnPCStatCalcEvent" this how I would do it - script item_party_buff -1,{ OnPCStatCalcEvent: if(getvar(@ITEMPARTYBUFF,getpartyleader(getcharid(1),2))){ bonus bAllstats, 1; } end; } 1201,Knife,Knife,5,50,,400,17,,1,3,0x3E9F7EEF,63,2,2,1,1,1,1,{},{ @ITEMPARTYBUFF = true; },{ @ITEMPARTYBUFF = false; } ofc it's not perfect , the party members won't get the bonus before they hit the event(this event happen a lot but it might be a problem for some to not get the bonus immediately) so if it's for my server , I won't do it and think of other ways , or maybe looking to the src to do it
    1 point
  8. Gostaria de saber como faço pra aumentar o dano no ataque básico pois com tudo os equipes bons eu n tiro mais do q eu tiro no bro com equips fracos, e lv max ainda no sv, obrigado.
    1 point
×
×
  • Create New...