-
Posts
1,669 -
Joined
-
Last visited
-
Days Won
68
sader1992 last won the day on June 12 2022
sader1992 had the most liked content!
About sader1992

- Birthday 11/16/1991
Profile Information
-
Gender
Male
-
Location
Syria
-
Server
Nothing RO
- Github: sader1992
- Discord: sader1992#3562
-
Interests
rAthena , C# , C++ , PHP , MMO , Anime , Microsoft , Science , Cooking , Math
Contact Methods
- Website URL
- Yahoo
- Skype
Recent Profile Visitors
19,670 profile views
sader1992's Achievements
-
Utility: All In One - Random Options Script
sader1992 replied to sader1992's topic in Utility Script Releases
each random option have an item bonus under it you can check all the random options in here https://github.com/rathena/rathena/blob/master/db/re/item_randomopt_db.yml -
Utility: All In One - Random Options Script
sader1992 replied to sader1992's topic in Utility Script Releases
instead of [email protected] = <Group ID>; Use [email protected] = [email protected]; now this is the group ID for each location EQI_ACC_L (0) - Accessory 1 EQI_ACC_R (1) - Accessory 2 EQI_SHOES (2) - Footgear (shoes, boots) EQI_GARMENT (3) - Garment (mufflers, hoods, manteaux) EQI_HEAD_LOW (4) - Lower Headgear (beards, some masks) EQI_HEAD_MID (5) - Middle Headgear (masks, glasses) EQI_HEAD_TOP (6) - Upper Headgear EQI_ARMOR (7) - Armor (jackets, robes) EQI_HAND_L (8) - Left hand (weapons, shields) EQI_HAND_R (9) - Right hand (weapons) EQI_COSTUME_HEAD_TOP (10) - Upper Costume Headgear EQI_COSTUME_HEAD_MID (11) - Middle Costume Headgear EQI_COSTUME_HEAD_LOW (12) - Lower Costume Headgear EQI_COSTUME_GARMENT (13) - Costume Garment EQI_AMMO (14) - Arrow/Ammunition EQI_SHADOW_ARMOR (15) - Shadow Armor EQI_SHADOW_WEAPON (16) - Shadow Weapon EQI_SHADOW_SHIELD (17) - Shadow Shield EQI_SHADOW_SHOES (18) - Shadow Shoes EQI_SHADOW_ACC_R (19) - Shadow Accessory 2 EQI_SHADOW_ACC_L (20) - Shadow Accessory 1 -
Utility: All In One - Random Options Script
sader1992 replied to sader1992's topic in Utility Script Releases
You can try replacing lines 45 to 49 with just [email protected] = <Group ID>; like this remove if(inarray(.item_list,[email protected]) == -1){ mes "Sorry , I cannot deal with this item!"; end; } [email protected] = .it[[email protected]]; add //[email protected] = <Group ID>; [email protected] = 1; this should make all the items group id 1 -
Utility: All In One - Random Options Script
sader1992 replied to sader1992's topic in Utility Script Releases
to fix this error on load you need to add freeloop(1); after OnInit: also You might need to add it after the start of the npc before disable_items; this because the list of items you have is too long. -
Utility: All In One - Random Options Script
sader1992 replied to sader1992's topic in Utility Script Releases
it would be nice to mention what was the error and fix, Thank you. -
this where rAthena removed the password from this command https://github.com/rathena/rathena/commit/2746e0d351fb141b9e55220778c8934dd45f4028 you can try to undo the changes and hope everything work after all this time
-
how to collect all iteminfo on divine-pride to iteminfo.lub/lua?
sader1992 replied to jumpocz's question in Client-side Support
I wanted to write a tool for that before , but I think I found one that does that , I am not sure but maybe @Cydh or @Secrets who wrote it. I don't remember if it was for the info in the server side (item_db) or the client side (iteminfo.lub) -
[Error]: buildin_getcharid: Player with nick '' is not found.
sader1992 replied to Mahiro's question in Scripting Support
getcharid works only on online characters -
also you can just redirect to the npc instead of using a duplicate for example: prontera,263,209,6 duplicate(Deathmatch PvP Warper) DM PvP Warper#prt02 823 to prontera,263,209,6 script DM PvP Warper#prt02 823,{ doevent("Deathmatch PvP Warper:OnTalk"); } and add OnTalk: at the start of the original npc
-
[Error]: get_val_: fatal error ! player not attached!
sader1992 replied to DEsMOn's question in Scripting Support
not sure what the script does , but to fix the error you can replace all the "@prace_winner$" with something like ".prace_winner_2$" -
well, you posted your topic in the forum issues section , so i think his assumption that you don't know how to use the search engine is reasonable
-
- script GM_AUTO_SPEED -1,{ OnPCLoginEvent: if(getgroupid() == 99){ atcommand "@speed 0"; } end; }
- 1 reply
-
- 1
-
-
"MySQL Workbench" != "MySQL Server" I don't think "MySQL Workbench 5.7" exist.
-
[Error]: buildin_strcharinfo: fatal error ! player not attached!
sader1992 replied to DEsMOn's question in Scripting Support
add if(playerattached()) before announce "It seems that "+strcharinfo(0)+" has ended the Invasion!",bc_all; like this if(playerattached()) announce "It seems that "+strcharinfo(0)+" has ended the Invasion!",bc_all; or just remove announce "It seems that "+strcharinfo(0)+" has ended the Invasion!",bc_all; because as I see there is no place calling the OnStop event while a character is attached.