Jump to content

Cyro

Members
  • Posts

    1138
  • Joined

  • Last visited

  • Days Won

    30

Everything posted by Cyro

  1. May be try something like this OnTimer20000: if (getmapusers("yourmap") == 0) { announce "All players failed to survive",0; end; }
  2. Cyro

    Item logs

    You can search them.from query SQL or search Something like this SELECT * FROM picklog WHERE `char_id` = '1' AND `type` = 'T' AND `nameid` = '512' AND `amount` = '-1' -1 is represents item taken out from player
  3. Cyro

    Item logs

    All trade, drop logs will be logged in picklog
  4. if(BaseLevel<100) { bonus bHit,30-(3*(BaseLevel/10)); bonus bMaxHP,1000-(100*(BaseLevel/10)); bonus bMaxSP,200-(20*(BaseLevel/10)); bonus bVariableCastrate,-10+(BaseLevel/10); bonus bHealPower,150-(10*(BaseLevel/10)); bonus bHealPower2,10*(BaseLevel/10); bonus bAddItemHealRate,10*(BaseLevel/10); }
  5. I am using Singapore dedicated host from ovh, and they do provide ddos protection,
  6. why is this posted under web releases ? supposed to be under showcase ?
  7. Just tested in 2016 Nov client works fine
  8. this system included in 2016+ clients , need not to have any script
  9. Cyro

    Flux cp slow

    mind sharing how you fixed that?
  10. Cyro means cold/cool I had a gold retriever which I named cyro after searching alot for a good name Ps- moved topic to forum games
  11. place the bmp folder with same name(bynajara or something) provided in the downloaded package it work
  12. this system not yet implimented in rathena 2017 client support this system as far as i know
  13. Cyro

    Error!!!

    Seems your MySQL user missing write and read permissions to the given database Try making a new user with global privileges and try connecting with that user
  14. how was that fixed? better leaving thread with proper answer when it fixed xD
  15. Cyro

    Card Trader

    Tested the posted script, working fine Make sure the listed items in your item_db.txt
  16. Make sure your client reading lub instead Lua And make sure to use tralstated iteminfo.lub
  17. like this one? there is also two other scripts by Peopleperson49 which works similer
  18. he wrote some functions which he uses in his scripts if u wana use those scripts you must include his function script to make them work just add that file you downloaded from the link you pasted like any other npc
  19. You can use euphy multi shop http://pastebin.com/raw/YftccqDs Ps- kindly use code box when you pasting code next time
  20. prontera,155,175,5 script CraftWoman#xilence01 4_F_KAFRA9,{ // success rate .@rate = 100; // required item setarray .@item,7623,1; mes "[CraftWomen]"; mes "I can refine Your equiment"; next; mes "[CraftWomen]"; mes "Depends on your luck you can get up to +10 stat orbs with 100% success rate"; next; mes "[CraftWomen]"; mes "for Shields i will give different orbs"; mes "You can get enhanced shield with atk,flee,matk bonus based on your luck"; next; mes "[CraftWomen]"; mes "Be carefull, once you enhance any equipment"; mes "You can not remove orb from equipment by any chance"; next; mes "[CraftWomen]"; mes "Enchant Equipment: "+.@item[1]+"x "+getitemname( .@item[0] ); switch ( select( "Armors", "Shields", "Garment", "Footgear", "Cancel" )) { case 1: .@position = EQI_ARMOR; .@enchant = rand( 4700,4759 ); break; case 2: .@position = EQI_HAND_L; .@enchant = rand( 4760,4767 ); break; case 3: .@position = EQI_GARMENT; .@enchant = rand( 4700,4759 ); break; case 4: .@position = EQI_SHOES; .@enchant = rand( 4700,4759 ); break; default: break; } if ( .@enchant ) { .@itemid = getequipid( .@position ); if ( .@itemid <= 0 || getiteminfo( .@itemid,2 ) != IT_ARMOR ) { mes "[CraftWomen]"; mes "You didnt wear any equipment."; } else if ( getequipcardid( .@position,1 ) ) { mes "[CraftWomen]"; mes "The equipment already enchanted."; } else if ( countitem( .@item[0] ) < .@item[1] ) { mes "[CraftWomen]"; mes "You didnt have "+.@item[1]+"x "+getitemname( .@item[0] ); } else { .@refine = getequiprefinerycnt( .@position ); .@card1 = getequipcardid( .@position,0 ); // .@card2 = getequipcardid( .@position,1 ); .@card2 = .@enchant; .@card3 = getequipcardid( .@position,2 ); .@card4 = getequipcardid( .@position,3 ); delequip .@position; delitem .@item[0],.@item[1]; if ( rand( 100 ) < .@rate ) { getitem2 .@itemid,1,1,.@refine,0,.@card1,.@card2,.@card3,.@card4; mes "Success enchanted with "+getitemname( .@card2 ); } else { mes "Fail"; } } } close; } credits to emistry
  21. How is this is related to forum games section
  22. Is your client diffed with 64k hairstyles?
×
×
  • Create New...