Jump to content

Angeluz

Members
  • Posts

    99
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Angeluz

  1. u can try with - script rewards -1,{ end; OnPCKillEvent: getmapxy(@map$, @x, @y, BL_PC); if( @map$ != "pvp_y_1-2" ) end; if ( getmapusers("pvp_y_1-2" ) ) > 20 ) getitem 606,2; else if ( getmapusers("pvp_y_1-2") > 15 ) getitem 606,1; end; }
  2. try with this gefenia01.gat gefenia01.gnd gefenia01.rsw
  3. sc_start .rotdicon[.today_rotd], (.timer - (.@time_passed * 1000)); maybe something like that
  4. https://rathena.org/board/search/?q=vip icon&quick=1
  5. Intenta agregando estos archivos a tu grf spr (1).grf
  6. - script Vip_Icon -,{ OnPCLoginEvent: if(vip_status(1)) { set .@a, vip_status(2) - gettimetick(2); bonus_script "{}",.@a,8,0,EFST_VIPSTATE; dispbottom "--- VIP ----"; dispbottom "=========================="; dispbottom "VIP Player"; dispbottom "Remaining VIP duration :"+callfunc("Time2Str",vip_status(2)); dispbottom "=========================="; end; } } try with this
  7. this? https://github.com/rathena/rathena/pull/7410
  8. Para los items y mobs, agregaste las db? (están el repositorio de rathena: https://github.com/rathena/rathena/tree/master/sql-files) Lo de esas funciones creo que aparecieron hace poco no las he visto, deja revisar y te aviso Edit: Agregué las funciones y me funcionan correctamente, no modifiqué nada. No sé cual pueda ser tu error. Funcionan tanto en cuentas de GM como de usuario normal
  9. yo lo que hago cuando me pasa eso, es reinstalarlas manualmente, dentro de la carpeta del fluxcp hay una de schemas https://github.com/rathena/FluxCP/tree/master/data/schemas ahi revisa cuales te faltan y aplicas los sql
  10. Si tienes el último hash del emulador no deberías desactivar el emblemwebservice, pero está aquí: https://github.com/rathena/FluxCP/blob/master/config/application.php#L24 Y sobre los MvP hay que cargarlos en el sql, los mob_db y los item_db, y sí, los que tienen _re es porque son renewall, depende de tu emulador
  11. same problem try with this scl enable devtoolset-7 bash which gcc gcc --version make clean ./configure make server
  12. here https://github.com/llchrisll/ROenglishRE/blob/master/Renewal/data/sclientinfo.xml#L12
  13. try with this - script KillMon2Cash -1,{ OnNPCKillEvent: .@gettimetick = gettimetick(2); if (rand(100) < 1 && .@gettimetick > @delay) { getitem 50001,1; @delay = .@gettimetick + 60; // 60 seconds } end; OnInit: bindatcmd "check", "KillMon2Cash::OnCheckTime"; end; OnCheckTime: if (( @delay - gettimetick(2)) <=0 ) message strcharinfo(0),"Your next drop is ready!"; else message strcharinfo(0),"Next drop in "+ ( @delay - gettimetick(2) ) + " seconds."; end; }
  14. my bad - script KillMon2Cash -1,{ OnNPCKillEvent: .@gettimetick = gettimetick(2); if (rand(100) < 1 && .@gettimetick > @delay) { getitem 50001,1; @delay = .@gettimetick + 60; // 60 seconds } end; OnInit: bindatcmd "check", "KillMon2Cash::OnCheckTime"; end; OnCheckTime: message strcharinfo(0),"Next drop in "+ ( @delay - gettimetick(2) ) + " seconds."; end; }
  15. that's specifically what the code I gave you earlier does. But remember, they will only be counted from when you placed that code onwards, if someone collected the reward before they can do it again, although only once more.
  16. Do you want it to be a unique prize per server? Or do you want to have them charge it once per account? That is, if two Ministrels reach the maximum level, will it only be given to one? Or that if I arrive with a minister and then with an archbishop, I can't collect it with the archbishop? i change it to sniper and creator 99/60 i take it first with creator then i change to sniper in same account, with new account and dont let me if you already take the price before start doesnt work you need to start from scratch
  17. maybe something like that - script KillMon2Cash -1,{ OnNPCKillEvent: .@gettimetick = gettimetick(2); if (rand(100) < 1 && .@gettimetick > @delay) { getitem 50001,1; @delay = .@gettimetick + 60; // 60 seconds } end; OnInit: bindatcmd "check", "KillMon2Cash::OnCheckTime"; end; OnCheckTime: message strcharinfo(0),"Next drop in "+ ( @delay - .@gettimetick ) + " seconds."; end; }
  18. this is just warning dont worry Maybe u did a bad update
  19. you need to use 49 points in first class
  20. here https://github.com/rathena/rathena/blob/master/npc/pre-re/mobs/dungeons/prt_maze.txt#L87 in pre-re https://github.com/rathena/rathena/blob/master/npc/re/mobs/dungeons/prt_maze.txt#L78 in re
×
×
  • Create New...