Jump to content

GM Winter

Members
  • Posts

    666
  • Joined

  • Last visited

Everything posted by GM Winter

  1. thanks to this ill try it now where exactly sir in src?
  2. sorry im newbie what i mean is a example or pre item_db.yml that there is no need to copy in the re item_db.yml and sometimes the other items are not found in re item_db.yml , i dont know how to update my itemdb in rathena master github can you please send some guides? thanks
  3. hello everyone i would like to ask how to put announce if the item reach level 7 it will be announce in the whole server thanks in advance
  4. hi sir can i ask where did you exactly insert the script? thanks
  5. hello guys i would like to ask if someone has an updated Pre item_db.yml
  6. how to go in this map when i already add it in my data?
  7. thanks man already see the error and fix it thanks for the script just theres no problem in your script the error is i didnt put the ending haha thanks again
  8. hello everyone i would like to ask how to put payment "zeny" in this script thanks in advance // Settings set .mode, 1; // Set it as following: 0 - 2nd to 3rd class suits ; if (.mode == 0) goto normal; normal: mes "[suit Provider]"; mes "So, wanna change your appearance?"; menu "Change to Third class suit",thirdclass,"Reset appearance",reset; thirdclass: if(class == Job_Knight) { changebase 4060; close; end; } if(class == Job_Assassin) { changebase 4065; close; end; } if(class == Job_Crusader) { changebase 4073; close; end; } if(class == Job_Blacksmith) { changebase 4064; close; end; } if(class == Job_Alchemist) { changebase 4078; close; end; } if(class == Job_Rouge) { changebase 4079; close; end; } if(class == Job_Sage) { changebase 4074; close; end; } if(class == Job_Dancer) { changebase 4076; close; end; } if(class == Job_Monk) { changebase 4077; close; end; } if(class == Job_Hunter) { changebase 4062; close; end; } if(class == Job_Bard) { changebase 4075; close; end; } if(class == Job_Wizard) { changebase 4061; close; end; } if(class == Job_Priest) { changebase 4063; close; end; } else { next; mes "[suit Provider]"; mes "I'm sorry, but your class is not supported."; close; end; } reset: changebase Class; close; end; }
  9. in that case you need to separate it //---------------------------------------------------------------------------- // Normal maps //---------------------------------------------------------------------------- 610,1 // Yggdrasil Leaf //---------------------------------------------------------------------------- //PVP //---------------------------------------------------------------------------- 610,2 // Yggdrasil Leaf
  10. i think if you disable it in the normal maps it will be disable to all normal maps not only in training ground base on the script // Forbidden Items Database // Defines restrictions on equipment, items, and cards in map types and zones. // // Structure of Database: // ItemID,Flag // // Legend for 'Flag' field (bitmask): // 1 - restricted in normal maps // 2 - restricted in PVP // 4 - restricted in GVG // 8 - restricted in Battlegrounds // 16 - restricted in WOE:TE castles // Restricted zones - configured by 'restricted <number>' mapflag // 32 - restricted in zone 1 // 64 - restricted in zone 2 // 128 - restricted in zone 3 // 256 - restricted in zone 4 // 512 - restricted in zone 5 // 1024 - restricted in zone 6 // 2048 - restricted in zone 7 // 4096 - restricted in zone 8 // // Passing negative value as flag will unset the flag instead. // // Examples: // 1201,1 // Knife can't be worn on normal maps // 608,4 // Yggdrasil Seed can't be consumed in both GvG and WoE Castles // 4174,6 // Deviling Card has no effect in every PVP or GVG map, and during WoE // 501,32 // Red Potion can't be consumed on maps marked as 'restricted zone 1' // 519,322 // Milk can't be consumed in PVP and maps marked as 'restricted zone 2' or 'restricted zone 4' (256+64+2) // 519,-2 // Unset `restricted in PVP` flag from Milk. Making it usable in PVP again.
  11. https://github.com/rathena/rathena/blob/master/db/re/item_noequip.txt
  12. How can to change teleport skill level 1 to Fly wing effect so that i dont need to press enter when teleporting thanks
  13. percentheal 100,100; // heals before warp warp "guild_vs1", ( .slot1 == .@gid ) ? 7 : 92, 50:(.@GID == .slot3) ? 49:90, 50:(.@GID == .slot4) ? 49:7, 50; sleep2 4000; // return to battle in 5 sec warp "guild_vs1", (.@GID == .slot1) ? 7:(.@GID == .slot2) ? 92:50, 50:(.@GID == .slot3) ? 49:90, 50:(.@GID == .slot4) ? 49:7, 50; i didnt get what does the yellow 50 means since so i just copied it in my next coordinations can you help me?
  14. i already add the slots but the problem is all of them are warping in the same room
  15. thank you sir i will try it hope i can fix it alone thanks again godbless you
  16. thanks sir did you mean here? } else { if ( .slot1 && .slot2 ) { mes "All slots has been taken."; close; } if ( !.slot1 ) .@slot = 1; else if ( !.slot2) .@slot = 2; if ( .slot1 == .@GID ) { mes "You're guild has already registered."; close;
×
×
  • Create New...