-
Posts
1,658 -
Joined
-
Last visited
-
Days Won
67
Content Type
Profiles
Forums
Downloads
Jobs Available
Server Database
Third-Party Services
Top Guides
Store
Crowdfunding
Everything posted by sader1992
-
at the end of your rathena/npc/other/Global_Functions.txt add function script mes_ar { [email protected]$ = getarg(0); explode([email protected]$, [email protected]$, " "); [email protected] = getarraysize([email protected]$) -1; for([email protected][email protected];[email protected]>=0;[email protected]){ [email protected]$ += [email protected]$[[email protected]] + " "; } mes [email protected]$; return; } How to use: prontera,0,0,0 script xxxxxx 444,{ mes_ar "روح شوف كونوسوبا"; end; }
-
Installation ""Closed connection from 127.0.0.1""
sader1992 replied to Newbie_tf's question in Installation Support
try this client info <servicetype>korea</servicetype> server config 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 -
i suggest to optimize your script , it does lack optimization and customization. i think you can write the same thing in less then 150 line with more customization options too. also the name well , not really a good name for the script.
-
Count my vote on yes , I Voted no xD.
-
you are using the function name the same as the command name are you sure about the command name ? don't use the command name as a function name line 10 function script costume { line 65 costume [email protected],1; // Convert the Headgear
-
so basically you know now that the issue is coming from the files that you didn't remove.
-
extra steps is will do nothing right? xD it's all about the gat file use the .gat that you are already using in your data folder , or first grf put the gat file in your import mapcache , and everything will work if you changed the gat file in your grf too , you maybe added a wrong gat file to the map, so don't edit the gat file(replace it) as long as you don't know what you are doing
-
If that is the case, then it's from your client files ,just test ,remove any unneeded file from the client files (grf) it's better to start from a clean grf then add your necessary edits only (after you test with the clean grf and confirm that the problem is gone)
-
Limiting a (Shadow) Refiner to refine only 1-2 items
sader1992 replied to Reinheit's question in Script Requests
my coding style. -
Limiting a (Shadow) Refiner to refine only 1-2 items
sader1992 replied to Reinheit's question in Script Requests
setarray [email protected], EQI_SHADOW_ARMOR, EQI_SHADOW_WEAPON; for([email protected]=0;[email protected]<getarraysize([email protected]);[email protected]++){ if(getequipisequiped([email protected][[email protected]])) [email protected]$ += F_getpositionname([email protected][[email protected]]) + "[ " + getequipname([email protected][[email protected]]) + " ]"; [email protected]$ += ":"; } [email protected] = [email protected][select([email protected]$) -1]; -
@bankayro you should add more info , not just push the topic up with no more info check your server setting and your server console
-
Limiting a (Shadow) Refiner to refine only 1-2 items
sader1992 replied to Reinheit's question in Script Requests
An easy way to do with replace for( set [email protected],1; [email protected] <= 15; set [email protected],[email protected]+1 ){ if( getequipisequiped([email protected]) ) set [email protected]$, [email protected]$ + [email protected]$[[email protected]] + "[ " + getequipname([email protected]) + " ]"; set [email protected]$, [email protected]$ + ":"; } WITH if( getequipisequiped(EQI_SHADOW_ARMOR) ){ set [email protected]$, [email protected]$ + [email protected]$[EQI_SHADOW_ARMOR] + "[ " + getequipname(EQI_SHADOW_ARMOR) + " ]"; } set [email protected]$, [email protected]$ + ":"; if( getequipisequiped(EQI_SHADOW_WEAPON) ){ set [email protected]$, [email protected]$ + [email protected]$[EQI_SHADOW_WEAPON] + "[ " + getequipname(EQI_SHADOW_WEAPON) + " ]"; } set [email protected]$, [email protected]$ + ":"; you can optimize it ofc -
if your pickup_log is too big (+1gig) I recommend that you rename it and make a new one , you will still have the old logs , however it's much easier for your server to deal with anew clean one.
-
How to add Randomoption to ProduceItem
sader1992 replied to nattapol's question in Scripting Support
sometimes this happen when you add random options in random positions , foe example , if you add an option at 0 and at 2 (and you skipped 1) your item might glitch make sure you don't skip a positions in the random options slots. -
Quests, Games: sader's hunting quest
sader1992 replied to sader1992's topic in Game, Event, Quest Script Releases
thanks for the report , the problems should be fixed in 5.1 thanks for the report , the problems should be fixed in 5.2 <exploit explanation removed from this reply, I encourage updating the script so no one exploit it> I would suggest to change the main variable (I moved it to the config in 5.2)[also change the shop variable] , if you changed the variable , the whole system will be reseted , and all the points would be reseted for all the players(or just delete the points from the player who exploited the system) -
the only other warning is advertising , which is +3 points , the warning you got is a lighter version of advertising even if you didn't mean to , your reply does give a sign to (talk to me in PM if you are willing to pay) I am not saying you meant to do that for deleting the post , most of the things that against the rule are hidden so it does not set an example for others to do the same notice that the user didn't ask for "your script" he asked for a script with the discerption he provided , your reply would be valid and might not be against the rule if the user was asking for "Poring King's script"
-
you can try src edit the command it self , would be easier then searching for every place it used in
-
the answer is above ^ just replace >= with == for only +7
-
How to fix commands that dont appear in
sader1992 replied to nasagnilac's question in General Support
did you update your atcommands.yml ? -
ask in here BrowEdit Discord also you would need it if you are planning to work on maping
-
look like you enchantment npc give bound items , if you still have this issue , you can post the script you are using here. if anyone have this problem, here is the solution ^
-
Please help on this script regarding event trigger on monster
sader1992 replied to caspa's question in Scripting Support
Please explain what you need more , I didn't understand what is the issue and what intended to be -
Release: Sader's Renewal Mode [PRE-RE Only]
sader1992 replied to sader1992's topic in Source Releases
something like this Imports: - Path: db/re/item_db.yml - Path: db/pre-re/item_db.yml Mode: Prerenewal - Path: db/re/item_db.yml Mode: Renewal - Path: db/import/item_db.yml -
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 and don't forget to check your ports
-
you are using the custom job changer , I am asking about the official quest , all the quest are enabled by default , so just remove the job changer and people would be forced to go do their job quest.