Jump to content

Patskie

Members
  • Posts

    1702
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Patskie

  1. // Forbidden Skills Database // // Structure of Database: // SkillID,Flag // // Legend for 'Flag' field (bitmask): // 1 = Cannot be used in normal maps // 2 = Cannot be used in PvP maps (use this instead of 1 for PK-mode servers) // 4 = Cannot be used in GvG maps // 8 = Cannot be used in Battleground maps // 16 = Cannot be cloned (clones will not copy this skill) // Restricted zones - they're configured by 'restricted <number>' mapflag // 32 = Cannot be used in zone 1 maps // 64 = Cannot be used in zone 2 maps // 128 = Cannot be used in zone 3 maps // 256 = Cannot be used in zone 4 maps // 512 = Cannot be used in zone 5 maps // 1024 = Cannot be used in zone 6 maps // 2048 = Cannot be used in zone 7 maps // // Example: // 8,6 = Endure cannot be used in PvP and GvG maps (2+4)
  2. @Annie : F_RandMes is already outdated. it has been changed to F_Rand ( npc/other/Global_Functions.txt#L151 ) so most probably the topic starter will have an error if he is using later rA version
  3. Use bindatcmd command to override the existing @item command.
  4. *makeitem <item id>,<amount>,"<map name>",<X>,<Y>; *makeitem "<item name>",<amount>,"<map name>",<X>,<Y>; This command will create an item lying around on a specified map in the specified location. itemid - Found in 'db/(pre-)re/item_db.txt' amount - Amount you want produced map name - The map name X - The X coordinate Y - The Y coordinate. This item will still disappear just like any other dropped item. Like 'getitem', it also accepts an 'english name' field from the database and creates apples if the name isn't found. If the map name is given as "this", the map the invoking character is on will be used.
  5. -%TAB%script%TAB%Item_soullink%TAB%-1,{
  6. If you think this is a bug. Then post this to our Bug Tracker section
  7. Use search there are many topics out there which is the same as your request.
  8. - query_sql "SELECT `connect_member` FROM `guild` WHERE `guild_id` = '" +getcharid(2)+ "'",.@c; + query_sql "SELECT `guild_lv` FROM `guild` WHERE `guild_id` = '" +getcharid(2)+ "'",.@c; - if ( .@c > 30 ) { + if ( .@c > 11 ) {
  9. Most likely if you create a script and put those. They will do the work.
  10. if ( getgmlevel() && ( agitcheck() || agitcheck2() ) ) { to : if ( getgmlevel() >= 60 && ( agitcheck() || agitcheck2() ) ) {
  11. Any error? I have tried it and works fine on my server
  12. Patskie

    R>PVP Title

    It isn't practical after all
  13. Patskie

    R>PVP Title

    Maybe add a check? If the title + his/her name exceeds 23 characters let them create a new name? Character will be deleted if their character name exceeds > 23 characters. ( kinda confused with the character word @_@ which is which )
  14. First : @eac = eaclass(); if( @eac&EAJL_THIRD ) { // allow } else { // deny } Second : getpartymember getcharid(1),2; while ( .@i < $@partymembercount ) { if ( attachrid( $@partymemberaid[.@i] ) ) { // do whatever } .@i++; } Third : Use multi-currency shop by @Emistry (suggested) and set the currency to your custom variable.
  15. http://www.youtube.com/watch?v=Az0C1k9AU_o
  16. Try : http://pastebin.com/raw.php?i=8tdASCdp
  17. Happy Holidays Everyone! Christmas is near approaching here in the Philippines! Maligayang Pasko at Manigong Bagong Taon mga Kababayan! :P

  18. Try : http://pastebin.com/raw.php?i=E9yCc32J
  19. No it's not. You want it that way? My script will check if online members of your guild is > 30. In the castle or not. If so, all guild members who enters the guild_vs1 will be warped out.
  20. This will check the online member only and if the online members are > 30 then they can't enter the castle : http://pastebin.com/raw.php?i=j716V4Ru
  21. prontera,150,150,0 script Sample 100,{ atcommand "@refine 0 +10"; end; }
  22. Please use search engine next time . Assuming you are using rAthena : http://pastebin.com/raw.php?i=QCzWUE1r PS : I just copy @Emistry code and integrate it in your code. Didn't test that.
  23. Many scripts are available on the forum. If you will search. You will definitely find them
×
×
  • Create New...