Jump to content

ScriptingPhailure

Members
  • Content Count

    31
  • Joined

  • Last visited


Reputation Activity

  1. Upvote
    ScriptingPhailure reacted to evilpuncker in All in one NPC   
    see if that is what you want http://upaste.me/r/5c4b11476e556d5eb
  2. Upvote
    ScriptingPhailure got a reaction from Jamaeeeeecah in Problem with simple script ;-;   
    Try:
    dicastes01,206,179,3 script Informações 100,{ mes "[GM]"; mes "Olá, sou o GM do jogo."; mes "Eu tenho a autoridade necessária para fazer o que for preciso.."; mes "Você deve estar atrás de informações sobre o servidor, certo?"; switch(select("- Mercado Negro. :- Horários da WoE. :- Quem são os GMs. :Cancelar")) { case 1: next; mes "Vou te levar até lá."; warp "dicastes01", 117, 169; close; case 2: next; mes "Os horários da WoE são baseados no HORÁRIO DE BRASÍLIA! - Horários: QUINTA WOE 1.0 DE 20:00 ATÉ 21:00, SEXTA WOE 2.0 DE 20:00 ATÉ 21:00, SÁBADO WOE 2.0 DE 20:00 ATÉ 21:00, DOMINGO WOE 1.0 DE 20:00 ATÉ 21:00"; mes "Esses são os horários e dias da Guerra do Emperium do servidor Ragna Blast!"; mes "Vou te levar até o Point da WoE."; next; warp "dicastes01", 252, 256; close; case 3: next; mes "Os GMs do server, usam uam roupa parecida com a minha. Nesse mesmo estilo."; mes "TODOS ELES USAM [GM] no nome! De tanto os jogadores não são habilitados a usar [GM] no nome de seu personagem."; mes "Só acredite no GM, se ele tiver uma roupa como a minha, e tiver o nome IDÊNTICO como o da lista a seguir:"; next; mes "[GM]Prontera"; mes "[GM]Payon"; mes "[GM]Geffen"; mes "[GM]Morroc"; mes "E só. Somente esses."; mes "para mais informações, acesse WWW.RAGNABLAST.TK"; close; case 4: close; }}
  3. Upvote
    ScriptingPhailure got a reaction from Jamaeeeeecah in Problem with simple script ;-;   
    You're missing a few ;'s and some "'s but here:
     
    dicastes01,206,179,3 script Informações 2492,{ mes "[GM]"; mes "Olá, sou o GM do jogo."; mes "Eu tenho a autoridade necessária para fazer o que for preciso.."; mes "Você deve estar atrás de informações sobre o servidor, certo?"; switch(select("- Mercado Negro. :- Horários da WoE. :- Quem são os GMs. :Cancelar")){ case1: next; mes "Vou te levar até lá.";warp "dicastes01", 117, 169; close; case2: next; mes "Os horários da WoE são baseados no HORÁRIO DE BRASÍLIA! - Horários: QUINTA WOE 1.0 DE 20:00 ATÉ 21:00, SEXTA WOE 2.0 DE 20:00 ATÉ 21:00, SÁBADO WOE 2.0 DE 20:00 ATÉ 21:00, DOMINGO WOE 1.0 DE 20:00 ATÉ 21:00"; mes "Esses são os horários e dias da Guerra do Emperium do servidor Ragna Blast!"; mes "Vou te levar até o Point da WoE.";warp "dicastes01", 252, 256; close; case 3: next; mes "Os GMs do server, usam uam roupa parecida com a minha. Nesse mesmo estilo."; mes "TODOS ELES USAM [GM] no nome! De tanto os jogadores não são habilitados a usar [GM] no nome de seu personagem."; mes "Só acredite no GM, se ele tiver uma roupa como a minha, e tiver o nome IDÊNTICO como o da lista a seguir:"; next; mes "[GM]Prontera"; mes "[GM]Payon"; mes "[GM]Geffen"; mes "[GM]Morroc"; mes "E só. Somente esses."; mes "para mais informações, acesse WWW.RAGNABLAST.TK"; close; case 4: close; } }   
        Also did you make adjustments to your scripts_custom.conf?
  4. Upvote
    ScriptingPhailure got a reaction from Jamaeeeeecah in Problem with simple script ;-;   
    I didn't test it but the one I posted in the code box should work you were missing a } at the end.

    can you post a copy of your  scripts_custom.conf?
  5. Upvote
    ScriptingPhailure reacted to Mootie in Hercules WPE Free - June 14th Patch   
    Harmony pwned
  6. Upvote
  7. Upvote
    ScriptingPhailure reacted to Yommy in Hercules WPE Free - June 14th Patch   
    either request at rAthena to convert it, or change to using Hercules
     
    Hercules devs will not create this for rAthena o_O
  8. Upvote
    ScriptingPhailure reacted to AnnieRuru in (Guild) Antagonism System   
    isn't the plugin is just below the code ?
    and there is no need to read the sql table, its not like this stuff is run when the player is offline
    to actually hit the player, both the source and target has to be online, so just use guild->check_alliance with enemy flag to read them
     
    make the script shorter a bit
    src/map/battle.c | 6 ++++++ 1 file changed, 6 insertions(+)diff --git a/src/map/battle.c b/src/map/battle.cindex 24f39a3..52b24ec 100644--- a/src/map/battle.c+++ b/src/map/battle.c@@ -6020,6 +6020,12 @@ int battle_check_target( struct block_list *src, struct block_list *target,int f if( (s_bl = battle->get_master(src)) == NULL ) s_bl = src; + if ( s_bl->type == BL_PC && t_bl->type == BL_PC ) {+ TBL_PC *sd = BL_CAST( BL_PC, s_bl );+ if ( guild->check_alliance( sd->status.guild_id, ((TBL_PC*)t_bl)->status.guild_id, 1 ) && !map->list[sd->bl.m].flag.town && !map->list[sd->bl.m].flag.nowarpto )+ return 1;+ }+ if ( s_bl->type == BL_PC ) { switch( t_bl->type ) { case BL_MOB: // Source => PC, Target => MOB http://upaste.me/28fd11097df8e9a10 
     
    you know ... I start to think that lilith's faction system can actually be release entirely with plugins ..
  9. Upvote
    ScriptingPhailure reacted to evilpuncker in 4 new permissions   
    [*]Cannot pick up items
    [*]Cannot buy/sell items at npc (opening the trade windows is okay tho)
    [*]Do not gain experience
    [*]Cannot use skills


     
    disable_pickup disable_store disable_exp disable_skill_usage  
     
    old patch here, made by clydelion
    http://pastebin.com/E7ABJ3cC
  10. Upvote
    ScriptingPhailure reacted to Alexandria in (Guild) Antagonism System   
    Hello you guys.
     
    How can I enable the antagonism system, so members of rival guilds (set by Guild leaders, maybe 3 foes maximum) can attack each other anytime, anywhere (except in towns). The main difference with Global PvP (PK server type) is that if someone is un-guilded or member of a guild not flagged as 'FoE' then this person cannot attack/be attacked.
     
    Thank you.
  11. Upvote
    ScriptingPhailure reacted to evilpuncker in Decompiling lub   
    open it in notepad++ and see if gibberish (compiled) or normal text (decompiled)
     
     
    Use luadec, search it here at forum
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.