Jump to content

sader1992

Content Moderator
  • Posts

    1691
  • Joined

  • Last visited

  • Days Won

    77

Everything posted by sader1992

  1. https://github.com/rathena/rathena/blob/532e043490368eea038a1808a6b35bf7c4fa0e97/doc/script_commands.txt#L678 % - will give you the remainder of the division. 7%2 is equal to 1. also do you mean out side of rathena ? why is this in general support section ?
  2. why would you think this pc_isequipped(sd, 23111,23112,23113,23114 and so on) would work on ? bool pc_isequipped(struct map_session_data *sd, unsigned short nameid); so your code should be like this if(pc_isequipped(sd, 23111) && pc_isequipped(sd, 23112) && pc_isequipped(sd, 23113)) //etc { }
  3. it's the `Walk To Delay` patches in nemo don't check something you don't know in nemo , just use what you know repatch your exe and don't check `Change Walk To Delay` and `Disable Walk To Delay`
  4. @vcpoker please download the new version 2.6
  5. please try this from if (rand(100) < .brack_chance){ set .@item, getequipid(.s_all_loc[s_all_selected]); // <<<<<<<<<<<<<<<<<<<<<<<<< delitem .@item,1; mes "and it broke!!"; specialeffect EF_SUI_EXPLOSION; } to if (rand(100) < .brack_chance){ set .@item, getequipid(.s_all_loc[.@s_all_selected]); // <<<<<<<<<<<<<<<<<<<<<<<<< delitem .@item,1; mes "and it broke!!"; specialeffect EF_SUI_EXPLOSION; }
  6. as i see there is no problems in the code can you post the error you see in the terminal ?
  7. i see your good intention however these are not the only files for the headgear so i suggest to learn more about the client files than update this file
  8. https://rathena.org/thirdpartyservices/ (CHECK HERE) https://rathena.org/board/awards/category/6-mapping/ (SEE THE PEOPLE WHO GOT THOSE BADGES) https://rathena.org/discord/ << ([5]: Refrain from advertising your service or money in exchange for paid services- there is a relevant sub-forum for this business.) https://rathena.org/board/forum/41-graphics-requests/ << (NO PAID TOPIC IN THE FORUM) https://rathena.org/board/files/ (CHECK WHO MAKE MAPS FOR $$ HERE AND TRY TO SEND THEM A MESSAGE) OR TRY ASKING HERE >> https://discord.gg/ZMCTJv (BROWEDIT DISCORD) i can give you more example but well you get the idea just think about it lol
  9. https://rathena.org/board/search/?q=prontera&amp;type=downloads_file or you can hire a designer
  10. .@something = 10; .@string$ = "thing"; mes "" + getd(".@some" + .@string$); mes "" + .@something; //.@some + (.@string$ = "thing";) //.@some + thing //.@something //getd(".@some" + .@string$) == .@something ----------------------------------------------------- .@var0 = 0; .@var1 = 5; .@var2 = 10; .@var3 = 15; for(.@i=0;.@i<4;.@i++) mes "" + getd(".@var" + .@i); //getd(".@var" + 0) == .@var0 //getd(".@var" + 1) == .@var1 //getd(".@var" + 2) == .@var2 //getd(".@var" + 3) == .@var3 it's easy you just need to test it , than you understand it
  11. the name of the first tab is too lang i suggest you decreases the name of the first tab msgstring file it may fix the problem
  12. you can just test it https://rathena.org/board/search/?q=wing&amp;type=downloads_file
  13. for robe yes anyway the tool above can do the work for you as i made it cuz i had a lot of wings to add that time however it's not intended to be like this the tool only copy/paste/rename/organize the files for you but what intended is to make the item look the best for each job not just copying ,but copying work most of the time
  14. i didn't understood your issue so i told you about the tool and i don't know what the folders in this encoding xD but the tool generate the folders in Korean anyway i did see what the folder is = 로브 and this folder is where you put the (ropes folders) inside it let's say you want to add this rope (rathena_rope) inside the grf you put the files of the spr/act data\sprite\로브\rathena_rope\ (folder) data\sprite\로브\rathena_rope\남\ (male folder) inside it all the files for each job for male data\sprite\로브\rathena_rope\여\ (female folder) inside it all the files for each job for female if the folder is not in your grf you make one
  15. it's npc so you put it as any normal npc and also i suggest you check this as i see you ask for every small thing so it's better to read the basics sometimes https://github.com/rathena/rathena/tree/master/doc https://github.com/rathena/rathena/blob/master/doc/script_commands.txt
  16. look more into this commands *setlook <look type>,<look value>{,<char_id>}; *changelook <look type>,<look value>{,<char_id>};
  17. you can do that if you are using the official way to add garments to your server for headgears there is male and female spr/act but for the garments there is male/female folders of the garment and each folder have spr/act for each job in the game this is the list https://github.com/sader1992/Garment_Files_Generator/blob/master/Garment Files Generator/KroNames.cs you can just make a wing make if files >> (you can use this than color the act/spr for each job the color you want
  18. try this get the inventory list get array of the items you are allowing free loop the inventory list searching for the items you want and assign them to arrays >> item id , refine all the information each for a variable you list it to the player and he choose one from the list so now the variable[player choice] is the item you want to work with do what ever you want with it xD ofc it would be easy the first time you do it but it will increase your knowledge in scripting PS : don't use deletearray all the time .@var will be auto cleard when the npc is done and getinventorylist variables does not need to be cleared
  19. as i see and you already know from the error that you are not getting the equipment information correctly so the server check for that item and not find it than it give you this error normally when i get this type of scripts as a request i just list all the items with the information in a menu and mes and let the player choose and confirm the item he want to enchant look more into [ getinventorylist ] command script this will also give the player the ability to not equip the item and enchant the item from the inventory even if he have more than one item the thing you are trying to do would put you in a maze in my opinion
  20. is it a (script request) ? Moved to the right section also you better add more information
×
×
  • Create New...