-
Posts
941 -
Joined
-
Last visited
-
Days Won
23
Community Answers
-
Rynbef's post in need help strong mvp green aura on pre renewal was marked as the answer
I think it comes from the client.conf and I refer to this post:
Maybe u can check ur ExternalSettings.lub. That's could be interesting too.
Rynbef~
-
Rynbef's post in How do I change the loading screen on my server? was marked as the answer
Create ur loading screens on the texture folder and at them on ur clientinfo.xml
Rynbef~
-
Rynbef's post in Different colors from the same palette in game and in Act editor was marked as the answer
This may cause of ur diffs
Rynbef~
-
Rynbef's post in HELP> itemcheck every 5seconds was marked as the answer
Just Init an NPC Timer that trigger a label.
https://github.com/rathena/rathena/blob/26335994588c4b45846c05d0e53780ead78e475c/doc/script_commands.txt#L7169
Rynbef~
-
Rynbef's post in Euphy Woe Controller was marked as the answer
Remove everything on this Label
https://github.com/rathena/rathena/blob/f34a47ae24b6e96e2d68d03cb0bdc7dc3dbee74c/npc/custom/woe_controller.txt#L32
Rynbef~
-
Rynbef's post in How to buy Gepard Shield was marked as the answer
Write him a privat message here on the forum or on skype. Please use the official release and do not search contact options, cause some people get scammed in the past.
Rynbef~
-
Rynbef's post in PVP Announcement was marked as the answer
Here u go https://board.herc.ws/topic/18871-dota-pvp-ladder/
Or on GitHub I've found a newer one
https://github.com/AnnieRuru/Release/tree/master/scripts%2FPvP %26 GvG%2FDota PVP ladder (3.6)
Rynbef~
-
Rynbef's post in Ragexe Client 20190530 was marked as the answer
@playniks I can't sleep until I've helped u. So I tried the same think again, again and again and since today its works fine. And I'm glade to upload ur requested client 🙂
2019-05-30aRagexe.exe
Rynbef~
-
Rynbef's post in Wear Costume button not from NPC? was marked as the answer
*mesitemlink(<item_id>{,<use_brackets>{,<display_name>});
May help u.
Rynbef~
-
Rynbef's post in Multiplying the Stat rates of MVP and Mobs was marked as the answer
@ErossAt src/map/mob.cpp on line 4544 it begins.
Just change:
mob->status.str = max(1, stat);
To:
mob->status.str = max(1, (stat*6));
And the same on the other stats below the other stats.
Attack change on line 4452 from:
mob->status.rhw.atk = atk;
To:
mob->status.rhw.atk = atk*6;
Defense change on line 4486 from:
def = cap_value(def, DEFTYPE_MIN, DEFTYPE_MAX);
To:
def = cap_value(def*6, DEFTYPE_MIN, DEFTYPE_MAX);
Recompile ur server after.
Ps: NOT TESTED!!
Rynbef~
-
Rynbef's post in Make WOE participation time still count when change character and reward 1 IP only get one .. was marked as the answer
@Styx15I haven't so much time but I hope it works like u want.
Account bounded and IP restricted
I think thats not the best solution.
Woe.txt
Rynbef~
-
Rynbef's post in R> Player has killed [monster] and got [monster card] Script was marked as the answer
U can use this:
https://github.com/rathena/rathena/blob/master/conf/battle/drops.conf#L150
Rynbef~
-
Rynbef's post in gettimestr? was marked as the answer
https://github.com/rathena/rathena/blob/master/doc/script_commands.txt#L3243
Rynbef~
-
Rynbef's post in Guild Dungeon Instance was marked as the answer
@Eross @Emistry
Posted an example a few hours ago:
Rynbef~
-
Rynbef's post in Guild Dungeon Instance was marked as the answer
@Eross @Emistry
Posted an example a few hours ago:
Rynbef~
-
Rynbef's post in Guild Dungeon Instance was marked as the answer
@Eross @Emistry
Posted an example a few hours ago:
Rynbef~
-
Rynbef's post in Goldroom timer and delay was marked as the answer
I've removed the OnPCLoadMapEvent Label and removed the set of the loadmap mapflag. Cuz' every time a player change the map (ex. die, warp or on NoSave flagged maps on disconnect) it will trigger this label and set the timer.
Therefore I've just init the timer after warp to the map.
The formatting was a bit confused.
GoldRoom.txt
Pls let me know if it works now. I can't check it by myself cuz' I'm only on mobile phone for a few days.
Rynbef~
-
Rynbef's post in [Solved] H>Quest NPC was marked as the answer
@chadnessPlease next time use code box or attach ur file. It's easier to copy/edit and read.
I've just added a delay as u want(if I understand u correctly). A check if 60 minutes ago since the completion of the last quest ago and an additional check if it was the same day. If it is a dialog will open and tells the player how many minutes he have to wait.
//not tested
RandomQuest.txt
Rynbef~
-
Rynbef's post in string to array split by "," was marked as the answer
explode(.@array$,"This:is:the:split:to:array:string",":");
That's what ur looking for I think.
Rynbef~
-
Rynbef's post in Stolao's Daily Login Reward call with item was marked as the answer
@Sephiroth91their is a script command that's special for commands defined by bindatcmd.
*useatcmd "<command>";
This command will execute a script-bound atcommand for the attached RID. If the
supplied command is not bound to any script, this command will act like 'atcommand'
and attempt to execute a source-defined command.
Rynbef~
-
Rynbef's post in PvP NPC was marked as the answer
@HerbertsidyThere is a DOTA PVP Ladder by @AnnieRurubut it's a few years ago since updated. But it should be exactly what ur looking for.
https://herc.ws/board/topic/18871-dota-pvp-ladder/?tab=comments#comment-97841
EDIT: @AnnieRuruupdated it at 20th of december 2020. I've updated link above.
Rynbef~
-
Rynbef's post in Check players title was marked as the answer
@WhiteEagle
I've selected the wrong row I saw it yet. It's should of course be:
query_sql("SELECT `title_id` FROM `char` WHERE `char_id`="+getcharid(0),.@title_id);
Instead of:
query_sql("SELECT `char_id` FROM `char` WHERE `char_id`="+getcharid(0),.@title_id);
Please let us know if u solved it.
Best regards,
Rynbef~
-
Rynbef's post in alternative to SPRconview ? without virus if possible was marked as the answer
@arcadaOften programs that's old and will modify any file or else cause an error as "virus". The programm is very old and how the most tools written in and for windows XP. My opinion u can trust ratemyserver but there is a better way I think to use Tokais Act Editor. U can just replace Images.
Rynbef~
-
Rynbef's post in Thor Patcher Fails if Using Domain was marked as the answer
Thor Patcher doesn't available to use SSL (https). Do u have 301 redirection activated? If yes, u need to disable it.
Rynbef~