-
Posts
292 -
Joined
-
Last visited
-
Days Won
16
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by Normynator
-
Nice work, thanks for the release!
-
Well how about contacting @Emistry ?
-
As you can see here, its a paid script, so noone would be allowed to share it.
-
[PoC] brAthena's MAC address ban system bypass proof-of-concept
Normynator replied to Secrets's topic in Client Releases
Do you have Source Code for that PoC publicly available? -
how to modify max level of baselevel and joblevel
Normynator replied to dashuiguo's question in Source Requests
https://github.com/rathena/rathena/wiki/Max-Level Wiki + Search Function = awesome -
Well you would need a setup tool which is open source to change it as you wish. I checked OPEN Setup but seems like its not OPEN source (atleast i didnt find a repo). So you probably have to write your own setup tool xD
-
https://github.com/rathena/rathena/blob/master/src/map/skill.cpp#L375 you could add a multipler to this line. For example „*2“ would double the range per level. But it‘s maybe easier to edit the spell in DB directly.
-
The script requires an item id not a string with a Name. Also does this not simplify the scripts, it makes it unclean. So instead of [email protected] = „Mega-Elunium“ (and the other possibility) you should keep the orignal part and just save the choice and use it later to display the text you want. But again, this isnt making the script simpler.
-
Are you using the correct IP in your clientinfo? Is your firewall configured correctly? It looks like there is no incoming traffic to the servers.
-
IP Management and DDoS Protection
Normynator replied to xilence01's question in Installation Support
I think inbound since client connections are coming in. And also allow all established outgoing connections. -
IP Management and DDoS Protection
Normynator replied to xilence01's question in Installation Support
All ports which are required by rAthena, so map-port, Login-Port, Chat-port. Additionally 80/443 for flux. -
// Flee stat = status->flee; stat += level + status->agi; status->flee = cap_value(stat, 1, SHRT_MAX); Status.cpp line 2683. Havent tested it but guess thats a start.
-
A good start would be to tell us what the problem is... we can’t read minds ( or at least I can’t)
-
Players can already join and leave channels, what would make the npc different?
-
Deleting it via SQL query should be an option, shouldn’t it?
-
With git you can simply: https://stackoverflow.com/questions/10414769/git-pull-keeping-local-changes
-
Heal skill bypass Golden thief bug CARD effect.
Normynator replied to JamS's question in Source Requests
Little addition: take care if you have WOE with Wand of Hermode (song) then heal will also bypass this effect. -
Heal skill bypass Golden thief bug CARD effect.
Normynator replied to JamS's question in Source Requests
Maybe i got something wrong, but since heal is no SC it shouldnt work that way. Its not even in the first list. I think you have to change: skill.cpp at line 6262 (least recent commit) case AL_HEAL: case AB_HIGHNESSHEAL: { int heal = skill_calc_heal(src, bl, skill_id, skill_lv, true); int heal_get_jobexp; if (status_isimmune(bl) || (dstmd && (status_get_class(bl) == MOBID_EMPERIUM || status_get_class_(bl) == CLASS_BATTLEFIELD))) heal = 0; To: case AL_HEAL: case AB_HIGHNESSHEAL: { int heal = skill_calc_heal(src, bl, skill_id, skill_lv, true); int heal_get_jobexp; if ((dstmd && (status_get_class(bl) == MOBID_EMPERIUM || status_get_class_(bl) == CLASS_BATTLEFIELD))) heal = 0; I did not test it but maybe it helps if the solution by Mahiro did not work. -
Do you mean jumping while standing in a trap?
-
how change damage to 32k to 16k damage only
Normynator replied to australia's question in Source Requests
This will just change the displayed number not the damage itself. Also reopening the same topic 3 times won’t attract people to help you, it’s just annoying -
how change damage to 32k to 16k damage only
Normynator replied to australia's question in Source Requests
It’s NOT client side it’s SERVER SIDE, as dissidia said! -
Need some pointing in the right direction, help please =(
Normynator replied to charlielovesu's question in General Support
Well it's not "scripting" i think, its acutal programming. As a beginner language I really liked Java, you can go with C++ but is maybe a bit though for a beginner. -
What was the gdb output when the crash happend?
-
Need some pointing in the right direction, help please =(
Normynator replied to charlielovesu's question in General Support
I would suggest that you get more knowledge about scripting. Here is a basic guide about scripting: Click me! and here are the docs, there you can find documentation about every script command: Click me, i am cooler! But here comes the problem, the basic guide and also probably most guides just teach you the syntax but not „How to code“. Most languages have the typical things like „if“, „for-loop“, „while-loop“ and „functions“ and you have to learn how all that works. If you already know a programming language then you probably know about all these things and learn to write rA-scripts is just about learning the syntax. My suggestion would be to try to acutal learn a programming language (via youtube tutorial or whatever) to get a basic understanding of how coding works and then go and learn rA-scripting syntax. When I started I didn‘t have clue either. Lucky me, I learned some Java at school. With my basic knowledge of the typical things I took a NPC and tried to understand how it works and later change it, that way I learned more and more about the syntax of rA-Scripts but most of the knowledge I got until now is from learning programming „concepts“ in school & university. Hoped this helped a least a little. -
Can’t you just use the settings icon on the chat window? Maybe I misunderstood your question.