-
Content Count
358 -
Joined
-
Last visited
-
Days Won
1
rans last won the day on January 4 2023
rans had the most liked content!
About rans
-
Rank
Advanced Member
Contact Methods
-
Website URL
http://facebook.com/ranz18
Profile Information
-
Gender
Male
-
Location:
Somewhere down the road
-
Emulator
Hercules
-
-
Hello, in v1.9 the IT_HEALING or 0 type is not working. its not being added to vector
-
Can anyone please update this? Map server crashing when using the duplicateremove Thread 1 "map-server" received signal SIGSEGV, Segmentation fault. script_free_code (code=0xfdfdfdfdfdfdfdfd) at script.c:4199 4199 if (code->instances)
- 19 replies
-
- duplicate command
- duplicate script
- (and 3 more)
-
fiction reacted to a post in a topic: Item link and navigation integration on some atcommands
-
Just like in rA's https://github.com/rathena/rathena/pull/7291 can we also have this feature? It would benefit a lot of players.
-
No it doesnt remove the cooldown. try it with the latest herc.
-
Can we have a option where Emergency Call Cooldown is remove after relogging? Currently we only have, Option 0: logging off will not continue the cooldown count. Option 1: Logging off and logging in will reset the Cooldown back to 5minutes Option 2: Logging off will continue the cooldown count. Maybe add option 4: Logging off will remove the Cooldown.? Thanks!
-
Kuroyama reacted to an answer to a question: How to hide bindatcmd on showing from @commands?
-
How to hide bindatcmd on showing from @commands?
rans replied to Kuroyama's question in Script Support
If the bindatcommand level is higher than the player level. it will not show -
Any bg mode will not give reward if i change the reward from bg_common.txt but when I added the nameid == "my_custom_id" in extendedBG.c bg_team_rewards function it works.
-
Custom headgear sprite and custom garment sprite have different method of adding sprite. you can check the guide here
-
Hello, it is currently not giving any reward. no map-server error can anyone please share fix?
-
Hi, can you give me a hint of whats the function name of it in src? thanks!
-
Hello, The script is ignoring the skill delay, it will spam the skill regardless of the cooldown. Possible to add check before using skill?
-
Tsuuu reacted to a file: Simple Cool Anti-Bot
-
Please show the solution here. it might help others in the future.
-
There's a bug in @autoattack. for some reason if you change map while in the state of autoattack you will get a client error message. saying missing sprite or something. Using 2016 02 03 client. im not sure in other newer client. Maybe add a delay before moving the char when you change map? Thanks!
-
Thanks!, i'll try this later
-
Can i request for @item restriction for example you cannot @item certain items. I have written a script that will return true/false but it doesnt work if the user input item Constant. https://pastebin.com/bvYqDXhB function script NoItemProduce { .input = atoi(getarg(0)); setarray(.disabledItems,501,512,503); if(array_exists(.disabledItems,.input) ){ dispbottom("This item is not available for item producing",C_RED); return true; } return false; }