-
Posts
1691 -
Joined
-
Last visited
-
Days Won
78
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Posts posted by sader1992
-
-
-
1 hour ago, Eros said:
Sir Sader can I request for a ASCII file name?
you can back it to a grf than unpack it to the encoding you want
or you can change this https://github.com/sader1992/Garment_Files_Generator/blob/master/Garment Files Generator/KroNames.cs
and recompile the program using vs
-
- script LevelUpQuotes -1,{ OnInit: setarray .q$,"I have advanced forward!","There's no stopping me now!","Look at me go!","There's more where that came from.","This isn't even my final form!"; .num1 = getarraysize(.q$); end; OnPCBaseLvUpEvent: if(!(BaseLevel%10)){ getitem 501,10; .@r = rand(.num1); showscript strcharinfo(0)+" : "+.q$[.@r]; } end; }
-
please put your information about the issue you get here
https://github.com/rathena/rathena/issues/4856
-
this ill only log the commands of the normal users , and it's not recommended , you add a command like that
go: true
this mean the normal users now can use @go
ofc under the id 0 group level 0 for the normal users
-
you should add the database entry that you tested and didn't work so people can help you
-
given that everything is right in the script , and your error is only on delitem3 , use
delequip .@equip_loc;
instead of delitem3
you still need the information to create a new item , but this insure that even if you missed some information about the item (like identify and attribute) the item will get deleted safely and the player can't abuse the system
also you don't need those
setarray .@OptID[0],0; setarray .@OptID[1],0; setarray .@OptID[2],0; setarray .@OptID[3],0; setarray .@OptID[4],0; setarray .@OptVal[0],0; setarray .@OptVal[1],0; setarray .@OptVal[2],0; setarray .@OptVal[3],0; setarray .@OptVal[4],0; setarray .@OptParam[0],0; setarray .@OptParam[1],0; setarray .@OptParam[2],0; setarray .@OptParam[3],0; setarray .@OptParam[4],0;
and your forloop for getting the random options
from
for (.@j = 0; .@j < 5; .@j++) { setarray .@OptID[.@j],getequiprandomoption(.@eq_loc,.@j,ROA_ID); setarray .@OptVal[.@j],getequiprandomoption(.@eq_loc,.@j,ROA_VALUE); setarray .@OptParam[.@j],getequiprandomoption(.@eq_loc,.@j,ROA_PARAM); }
to
for (.@j = 0; .@j < 5; .@j++) { .@OptID[.@j] = getequiprandomoption(.@eq_loc,.@j,ROA_ID); .@OptVal[.@j] = getequiprandomoption(.@eq_loc,.@j,ROA_VALUE); .@OptParam[.@j] = getequiprandomoption(.@eq_loc,.@j,ROA_PARAM); }
-
*set <variable>,<expression>{,<char_id>};
set .@join,getwaitingroomstate(0,"Waiting");
you missed a comma , read the console errors before anything.
-
1
-
-
-
don't remove the monsters from the database
just remove the spawn
check https://github.com/rathena/rathena/tree/master/npc/pre-re/mobs
-
1
-
-
- script noskill_mapflag_remove -1,{ OnInit: if(getmapflag("prt_are_in",mf_noskill)) removemapflag "prt_are_in",mf_noskill; end; }
put it at the end of your scripts list
so it would load last
-
https://myanimelist.net/anime/39292/Princess_Connect_Re_Dive
isekai
isekai anime where all the characters is girls except the protagonist
the anime made as an ad for the game
so I am 3 Episodes in the anime and my opinion:
it's really good looking Anime
to be honest the idea before i start watching the anime looked good for me as i am a big Harem fan
however I realized that the male protagonist is more like a side character in the story
it have some mystery and a lot of screen time , however it does not feels like a protagonist
for me personally i can't feel but shame that this anime would look much better for me if the protagonist was a real main character
it might be in the future , however as a first look for now it's not
if I want to watch a Moe anime I would just search for one , but this setup for me is not relatable nor enjoyable.
i just want to say sorry for Kokoro Chan , she could have been pretty good waifu for me for 2020 xD
Maybe I will check out the game instead d==( ̄▽ ̄).
or maybe will continue the anime as I am bad at leaving an Anime i already begun to watch.
-
1
-
-
if even after the reload the mapflag is not removed
make sure there is no where else the mapflag targeting the map
other files
or you can disable the mapflag using a script with oninit event at the end of your scripts list
-
@reloadscript
-
when you edit the map flag reload the scripts
use @mapflag command to check what map flags are in the map you in.
-
you better not delay the events if you have too many of the same type.
the maximum number is 3
after that the events will be deleted instead of moving to the queue.
https://github.com/rathena/rathena/blob/05ebde0198380c100c92b7873c86ee93b811032d/src/map/map.hpp#L49
-
1
-
1
-
-
do not increase the maximum , just marge the events you have into one script.
-
the npc only give a skill with a level of the number of the variable saved when the player give the npc the gym pass
ofofofofof
you need to increases the skill level , the max in the db is 13 , you can increases it in skill.hpp that back to your skill db and increases it there
given the skill does support that and it's a "Equation" not a static number , you edit the npc and it will work.
I do not recommend that , i would suggest to give your players more weight with an alternative way instead of increasing the max skill level , however you can do it.
-
there is too many guides on how to make client files
little installer is all the client files except data.grf rdata.grf and BGM folder.
those are somewhat out-dated
however you can follow the client side guide part in other topic like
the main thing is , you create exe < than get kro client , add your exe to it , remove the data.grf /rdata.grf / BGM folder , compress it to zip and upload it.
there is some files that you could remove too from the client folder , however you need to be more experienced to move to that topic
-
1
-
-
Need more information , I don't think anyone can help you unless someone had this problem and fixed it.
You should add more information about the problem if you want the help of the others who did not encounter this problem (most of the forum members).
(server setup , client setup)
-
Do not input map id and put it in the text in the import not in re/pre-re , put your gat into the import map cache, read the console errors if there is any.
-
1
-
-
-
conf/import/char_conf.txt login_ip: 127.0.0.1 char_ip: public_ip conf/import/map_conf.txt char_ip: 127.0.0.1 map_ip: public_ip
-
On 4/12/2020 at 4:21 AM, Badarosk0 said:
Good Thank you!
Is there any way to work in instance? I want to use this system to block entry in instance with dual.If any player is in instance, gepard check does not work.
if it's an instance , you should give the function the map name in the instance , check instance_mapname command
[REMAKE] Happy Hour EXP "extended"
in Scripting Support
Posted · Edited by sader1992
try like this
happy_hour_npc.txt