Jump to content

sader1992

Content Moderator
  • 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

Recent Profile Visitors

19,670 profile views

sader1992's Achievements

  1. 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
  2. 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
  3. 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
  4. 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.
  5. it would be nice to mention what was the error and fix, Thank you.
  6. This topic has been moved to the "Abandoned Projects" sub-forum. If the author is still working on this project, they may request that a moderator moves the topic back and removes this post.
  7. 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
  8. 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)
  9. 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
  10. not sure what the script does , but to fix the error you can replace all the "@prace_winner$" with something like ".prace_winner_2$"
  11. 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
  12. - script GM_AUTO_SPEED -1,{ OnPCLoginEvent: if(getgroupid() == 99){ atcommand "@speed 0"; } end; }
  13. "MySQL Workbench" != "MySQL Server" I don't think "MySQL Workbench 5.7" exist.
  14. 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.
×
×
  • Create New...