Jump to content

Jayz

Members
  • Posts

    395
  • Joined

  • Last visited

  • Days Won

    5

Jayz last won the day on September 8 2023

Jayz had the most liked content!

About Jayz

  • Birthday 01/01/1992

Profile Information

  • Gender
    Male
  • Location
    Geffen
  • Server
    None

Contact Methods

Recent Profile Visitors

8180 profile views

Jayz's Achievements

Metaling

Metaling (6/15)

  • Reacting Well
  • Conversation Starter
  • Problem Solver Rare
  • First Post
  • Collaborator

Recent Badges

53

Reputation

15

Community Answers

  1. Solve this question Selects an option from the menu, it determines which equipment slot was selected (.@part) and checks if that slot is equipped using getequipisequiped.
  2. I am trying to create custom crafting with an equipment menu. How can I redirect it to its correct category? For example, if I choose Armor from the menu, it should go to the Armor tab. This is the script I made, but I'm not sure how to properly retrieve the equipped equipment. setarray .@eq[1], EQI_HEAD_TOP,EQI_ARMOR; for(set .@i,1; .@i<getarraysize(.@eq); set .@i,.@i+1){ if(getequipisequiped(.@eq[.@i])){ set .@menu$,.@menu$+F_getpositionname(.@eq[.@i])+" ~ [ " + getequipname(.@eq[.@i]) + " ]"; set .@equipped,1; } set .@menu$,.@menu$+":"; } set .@part,.@eq[select(.@menu$)]; if(getequipisequiped(.@eq[.@i]) == EQI_HEAD_TOP) { mes "Wearing Top Headgear"; close; } if(getequipisequiped(.@eq[.@i]) == EQI_ARMOR) { mes "Wearing Armor"; close; }
  3. Use router,, because you need to portforward your LANIP to connect,, if you trouble with your connection and you want to use pocketwifi,, use hamachi instead but you need data service in your pocketwifi
  4. For offline mode use the LAN IP on clientinfo,xml e.g. 192.168.100.1
  5. Try in the keyboard control ```ALT + END```
  6. look on https://github.com/rathena/rathena/blob/master/conf/battle/skill.conf // Should traps (hunter traps + quagmire) change their target to "all" inside gvg/pvp grounds? (Note 3) // Default on official servers: 1 (for players) gvg_traps_target_all: 1
  7. You can click the main schemas in your phpmyadmin to expand the databse table and you can find the ```login``` once you found the login click it and find your username in the line of your username find the group_id and make it 99 Just double click the group_id field the default value is 0 just double click the 0 to edit
  8. Jayz

    About SC_ITEMBOOST

    It really work thank you for your effort, now im reading the change and analyze it so next time i can do it by myself btw i start learning first the breakpoint in visual studio so if i had map crash error i easily detected,
  9. Jayz

    About SC_ITEMBOOST

    Okay thank you for the idea ill try to my end to find the conflicts and i will wait your's because im newbie on src starting learning
  10. Jayz

    About SC_ITEMBOOST

    I found the issue about @mobinfo but i use the excluded_item_ids since both are same concept and it work, when i use @whodrops 1202 the Knife rate will not affected on SC_ITEMBOOST but when i use @mi the Knife is affected by SC_ITEMBOOST all i can say is its working we need to find the logic on @mi command thanks
  11. Jayz

    About SC_ITEMBOOST

    I use md->mob_id and i think its working fine,, but my problem now when i use @mi 1002 the mapserver is crash,
  12. Jayz

    About SC_ITEMBOOST

    I see now i understand the logic,, btw about the mob_id and item_id have error undeclared identifier how to declare this identifier? for adding int mob_id; ?
×
×
  • Create New...