Jump to content

benching

Members
  • Posts

    350
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by benching

  1. no errors on pve? just pvp? do you have rdata.grf?
  2. are you sure that it's the gepard and not because of woe time? (more players in woe) how did you check the fps in client? is there a debug tool for that? I think FPS drop is inevitable if the client have a hackshield that checks for client behavior, however it should be a very small value, humans can't do multiple things in a second. ( i bet hackshield(s) check on player actions, not per second) PS: this is from what i know, correct me if im wrong
  3. every data you could have, comes from database, what you want is impossible.
  4. if this is still not fixed, try changing the str to key, then if another problem shows up, give me a message for faster communication. or join the discord channel: https://discordapp.com/invite/0XP9qqhUV9FqRCA5
  5. can you attach the npc script?
  6. Edit you skill_copyable_db.txt add the skill(s) you want to be copied, usage is written in the file. you can find the skill_copyable_db.txt in the db folder
  7. you have a missing table in your database the missing table name is `global_reg_value`, make sure that you import the sql files correctly. im not sure if rathena main.sql have that kind of table EDIT: Base from this link https://github.com/rathena/rathena/blob/master/sql-files/main.sql nope, rathena sql dont have that table, you can modify the npc to use this table(s) instead, `global_acc_reg_str` `global_acc_reg_num`
  8. save the files as .lub not .txt
  9. Not tested - script partywarper -1,{ OnInit: bindatcmd "pc",strnpcinfo(3)+"::pwarp"; end; pwarp: // get the party member names getpartymember getcharid(1),0; set .@count, $@partymembercount; copyarray .@name$[0], $@partymembername$[0], $@partymembercount; mes "Select Number of the party member to warp to"; for (set .@i,0; .@i < .@count; set .@i, .@i+1) { mes (.@i +1) + .@name$[.@i]; } next; input .@wtindex; if(.@wtindex <= 0 || .@wtindex > .@count+1){ mes "Invalid Member Index"; close; } atcommand "@warpto "+ .@name$[.@wtindex - 1]; close; end; } EDIT: Looks like i dont get what you want in the first day of reading, ( i mean i misunderstand ) use @pc to trigger the npc, then select the partymember index you want to warp to,
  10. https://rathena.org/board/topic/98242-r-back-option-to-enabledisable-showing-shield-icons-to-players-under-devotion/
  11. try changing, warp prontera 125,125; to warp "prontera",125,125;
  12. seriously dude, go search before asking, https://github.com/rathena/rathena/blob/master/doc/script_commands.txt
  13. make sure everything is `not in use/close` before renaming the folder, Make sure you copied it completely, and check for viruses on your pc. you should search things like this in google, instead of asking here.
  14. why would you show everything, you should change your cp password....
  15. try right click, then save as
  16. From what i thnk, there are some installation of .net framework 4.?.? that are not recognized by some programs, i can bypass this issue by installing the .net framework with the help of other program installer, one of it is visual studio which automatically install the .net framework, You might also need the vs when compiling server files in windows. i dont know if there are standalone installer for .net framework 4.?.? that will help you fix that. MySQL installer will let you choose if you want to install or not, the other tools for database management, One of it is the Workbench.
  17. it might be a sprite error, either a NPC, hairstyle, headgear. whats the last thing you do before this crash happens? did you upload anything that have custom sprite(s)?
  18. if im not mistaken, the feature implemented for multi level is only a switch, in which i mean, if players are allowed to level up multiple times or not. basically, what you want does not exist, unless you do it ( yourself ).
  19. Whatever is that buff, here's your script. you can learn more in here: https://rathena.org/wiki //===== 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. //============================================================ - script Healer -1,{ .@Price = 0; // Zeny required for heal .@Buffs = 0; // Also buff players? (1: yes / 0: no) .@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; Zeny -= .@Price; } if( getcharid(2) == 0 ){ // change the below with your buff //sc_start whatishyperbuffer,100000,1; } 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) @HD = gettimetick(2) + .@Delay; end; } // Duplicates //============================================================ alberta,25,240,6 duplicate(Healer) Healer#alb 909 aldebaran,135,118,6 duplicate(Healer) Healer#alde 909 amatsu,200,79,4 duplicate(Healer) Healer#ama 909 ayothaya,207,169,6 duplicate(Healer) Healer#ayo 909 comodo,184,158,6 duplicate(Healer) Healer#com 909 einbech,57,36,6 duplicate(Healer) Healer#einbe 909 einbroch,57,202,6 duplicate(Healer) Healer#einbr 909 geffen,115,72,6 duplicate(Healer) Healer#gef 909 gonryun,156,122,6 duplicate(Healer) Healer#gon 909 hugel,89,150,6 duplicate(Healer) Healer#hug 909 izlude,121,150,6 duplicate(Healer) Healer#izl 909 //Pre-RE: (125,118) jawaii,250,139,4 duplicate(Healer) Healer#jaw 909 lighthalzen,152,100,6 duplicate(Healer) Healer#lhz 909 louyang,226,103,4 duplicate(Healer) Healer#lou 909 manuk,272,144,6 duplicate(Healer) Healer#man 909 mid_camp,203,289,6 duplicate(Healer) Healer#mid 909 moc_ruins,72,164,4 duplicate(Healer) Healer#moc 909 morocc,153,97,6 duplicate(Healer) Healer#mor 909 moscovia,220,191,4 duplicate(Healer) Healer#mos 909 niflheim,212,182,5 duplicate(Healer) Healer#nif 909 payon,179,106,4 duplicate(Healer) Healer#pay 909 prontera,162,193,4 duplicate(Healer) Healer#prt 909 rachel,125,116,6 duplicate(Healer) Healer#rac 909 splendide,201,153,4 duplicate(Healer) Healer#spl 909 thor_camp,249,74,4 duplicate(Healer) Healer#thor 909 umbala,105,148,3 duplicate(Healer) Healer#umb 909 veins,217,121,4 duplicate(Healer) Healer#ve 909 xmas,143,136,4 duplicate(Healer) Healer#xmas 909 yuno,164,45,4 duplicate(Healer) Healer#yuno 909 // Duplicates (Renewal) //============================================================ brasilis,194,221,6 duplicate(Healer) Healer#bra 909 dewata,195,187,4 duplicate(Healer) Healer#dew 909 dicastes01,201,194,4 duplicate(Healer) Healer#dic 909 ecl_in01,45,60,4 duplicate(Healer) Healer#ecl 909 malangdo,132,114,6 duplicate(Healer) Healer#mal 909 malaya,227,204,6 duplicate(Healer) Healer#ma 909 mora,55,152,4 duplicate(Healer) Healer#mora 909
  20. that error should show in (debug) run, make sure to build all, mapcache is not necessary.
  21. Tentou fazê-lo no meu lado, e esta parte não está funcionando corretamente. e eu não sei porquê, parece que ele não pode acessar os .itens variáveis ​​[] de lealdade # controlador. se o controlador de loyalty#controller vai usar as .itens[], seria melhor se você acabou de inicializar os .itens[] no loyalty#agent btw, OnInit are automatically called, no need to call it, remove this, leave the end;
  22. I didn't question the solution you gave to her, I question her, asking her, if she was sure about using the setbattleflag is not a criticism. Just asking if she was sure, well, thats your point of view, lets leave it at that. @zaruramen Can we close this topic?
  23. você define a matriz como items mas você estiver usando itens e Citar verificar também se há outras coisas ENGLISH TRANSLATION: you set the array as items but you are using itens and also check for other things I hate translating..
  24. Is the websocket server necessary? Stuck in Please wait (login). Inform me if you want to check the link, and ill pm it to you. And btw, the registration in robrowser.com doesn't send a email verification. Best Regards and More Power, benching
×
×
  • Create New...