Jump to content

Vector

Members
  • Posts

    9
  • Joined

Profile Information

  • Gender
    Male
  • Location
    Alola
  • Server
    CrimsonRO

Recent Profile Visitors

1948 profile views

Vector's Achievements

Poring

Poring (1/15)

  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

0

Reputation

1

Community Answers

  1. Same problem here with debian. Any good soul that can help us? In this moments a lot of people in quarantine wanna play RO and this is limiting the servers ?
  2. Hi, You fixed it? Would be great if this release get updated to latest src ?
  3. Pako, hay fácil unas 10 guías en este foro. Veo que eres nuevo, te recomiendo usar el motor de búsqueda, funciona bastante bien.
  4. Thanks, I'll test it
  5. Hi, there is a mapflag for that. https://github.com/rathena/rathena/blob/master/doc/mapflags.txt#L95
  6. Hi rA! I'm using the *clone script to generate clone for X users in map, they have a ::OnCloneDead event attached so my Question is: There is a way to know what clone kills another clone? Like: The [Player 1] clone kill [Player 2] clone. Thanks in advance!
  7. if you config is pre-re, check the chars with > 99 of any stat, change it to any value between 1 and 99 and try enter again
  8. awesome, really thanks! it worked!
  9. Hello guys, i'm a little novice in rAthena scripting and i have one trouble with the timers logic and flow. can you check the code and tell me why the #$%&/ timer don't run? regards job3_gen01,44,46,5 script Hetfield 940,{ disablenpc "mvptimer"; mes "^FF8000[Hetfield]^000000"; mes "Hola, mis ancestros han heredado por generaciones"; mes "un misterioso poder con el cual"; mes "invocamos a los MvP's mas poderosos"; mes "de todo Rune of nifelheim."; next; mes "^FF8000[Hetfield]^000000"; mes "Puedo invocar a una gran bestia"; mes "sin embargo necesitan darme algo..."; next; mes "^FF8000[Hetfield]^000000"; mes "^0101DFQuiero 100,000,000 de zeny.^000000"; mes "Todos en este mundo pueden darme la cantidad que quieran"; mes "y cuando llegue al monto que dije"; mes "anunciare la llegada del ya mencionado poderoso MvP."; next; mes "^FF8000[Hetfield]^000000"; mes "No se que MvP saldra, pero de lo que podeis"; mes "estar seguros, es que es tremendamente fuerte."; next; mes "^FF8000[Hetfield]^000000"; mes "Actualmente han donado: ^0101DF"+$MVPZENY+"^000000"; mes "Quieres donarme Zeny?"; if (select("Si","No")==1){ mes "Acepto como minimo 1 millon y maximo 5 millones."; mes "Dime cuanto quieres darme:"; input @zeny; if(@zeny <= 5000000 && @zeny >= 1000000){ if(Zeny < @zeny){ mes "Ridiculo No cuentas con esa cantidad de Zeny!"; end; }else{ mes "^0101DFGracias por los: "+@zeny+" z^000000"; set Zeny, Zeny - @zeny; set $MVPZENY, $MVPZENY + @zeny; announce strcharinfo(0)+" ha donado "+@zeny+"z al NPC Hetfield para invocar una bestia poderosa...",bc_map,0x9ACD32; enablenpc "mvptimer"; next; if($MVPZENY >= 100000000){ mes "^FF8000[Hetfield]^000000"; mes "OHH!!! He conseguido el Zeny que necesitaba, preparaos para la invocacion del poderoso MvP en la ciudad de Morroc!"; set $MVPZENY,0; end; } next; mes "^FF8000[Hetfield]^000000"; mes "Oh si, cuando tenga toda la plata"; mes "Voy a llamar a la gran bestia que prometi..."; end; } }else{ next; mes "^FF8000[Hetfield]^000000"; mes "Ya te dije cuanto Zeny acepto. adios!"; end; } }else{ end; } } - script mvptimer -1,{ OnEnable: initnpctimer; end; OnTimer3000: announce "Ok 3 segundos mas [Testing NPC... ignore it].",bc_all,0x9ACD32; end; OnTimer5000: announce "Ok 2 segundos mas [Testing NPC... ignore it].",bc_all,0x9ACD32; end; OnTimer6000: stopnpctimer; end; }
×
×
  • Create New...