Jump to content

crazyarashi

Developer
  • Posts

    763
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by crazyarashi

  1. yes, i think so just add the instance on the instance db and the quest db, and also the script to pre-re npc's :))
  2. Woot~ Thanks maybe that's why the emperium is not appearing
  3. prontera,255,255,5 script Cash Points Exchanger 758,{ set .@i, #CASHPOINTS; mes "[Cashpoints Exchanger]"; mes "You have ^0055FF"+.@i+" Cash Points^000000."; if (!.@i) { mes "Please come back later."; close; } mes "I can convert your ^FF0000Cash Points^000000 To a ^FF0000TCG^000000."; next; if(select(" - Trade: - ^777777Leave^000000")==2) close; mes "[Cashpoints Exchanger]"; mes "How many would you like to convert?"; next; input .@j; mes "[Cashpoints Exchanger]"; if (.@j < 1 || .@j > #CASHPOINTS) { mes "That's an invalid amount."; close; } mes "Are you sure you want to exchange ^0055FF"+.@j+" Cashpoints^000000?"; if(select(" - Yes: - No")==2) close; mes " "; set #CASHPOINTS, #CASHPOINTS-(.@j*1); getitem 7227, .@j; mes "You now have "+countitem(7227)+" TCG."; close; } Cashpoints to TCG
  4. Hi Rathena Good Day, Im Using Euphy's WOE Controller and i have a question. I've search the forums about this and see multiple answers so im not really sure about it Should i disable agit_controller.txt and agit_main.txt? some say you should just disable the agit_controller.txt and some say you don't need to disable anything. Anyone can clarify this for me :))
  5. Hi i didn't extract the parent folder since there is tons of file in data.grf but ill add a proper directory for it :))
  6. Please do Thanks for the help :))
  7. you have an unknown bonus2 check your custom items or items you edited that use bonus2 maybe you had a typo or something. :))
  8. Good Day, Does anyone know any guide how to edit and improve SMF Forums. *Changing Themes *Adding Contents *Adding Transparent Pictures To make it livelier (If Possible) First time making a forums and need a quick guide :)) Advanced Thank you for the answers :))
  9. For Rebellion 0x40000000
  10. Did you try running your server in a different client?
  11. Hi do you mind if i ask for an example if the script. isequippedcnt :))
  12. Hi this is my dress pack try using i didn't download any from the net im only using the one from the jRO grf. Dress Pack.rar
  13. Try This https://github.com/rathena/FluxCP/blob/master/data/npc/DonationNPC.txt
  14. Before that have you checked if your flux donations is fully functional? :))
  15. Hi, Good Day Rathena I want to know how to limit an accessory effect to 1 only. For example of you wear 2 Glorious Ring Only 1 will effect. and the other wont have effect. Is it in the item script? or others..
  16. new_3-1,58,114,4 script Freebies 832,{ mes "[Freebies NPC]"; mes "Welcome to Server Name!!"; if ( #NewbieGift > 0 ) goto Recieved; mes "Here's your freebies!"; getitem 12214,5; getitem 12210,5; getitem 12263,5; getitem 5826,5; getitem 569,30; getitem 12323,20; set #NewbieGift, 1; next; mes "Please select your class specific freebies that you want to get:"; switch(select("Swordsman:Archer:Mage:Acolyte:Merchant:Thief")) { case 1: mes "[Freebies NPC]"; mes "Here's your freebies for Swordsman class"; getitem 13945,1; goto Message1; end; case 2: mes "[Freebies NPC]"; mes "Here's your freebies for Archer class"; getitem 13948,1; goto Message1; end; case 3: mes "[Freebies NPC]"; mes "Here's your freebies for Mage class"; getitem 13946,1; goto Message1; end; case 4: mes "[Freebies NPC]"; mes "Here's your freebies for Acolyte class"; getitem 13947,1; goto Message1; end; case 5: mes "[Freebies NPC]"; mes "Here's your freebies for Merchant class"; getitem 13949,1; goto Message1; end; case 6: mes "[Freebies NPC]"; mes "Here's your freebies for Thief class"; getitem 13950,1; goto Message1; end; } Message1: mes "[Freebies NPC]"; mes "Start your awesome journey today."; mes "If you need help. Please use @request / search for Game Staffs. Thank You."; close; Recieved: mes "[Freebies NPC]"; mes "You already recieved a freebies."; close; } Modified your script :)) Just give it a try.
  17. Hi i just want to inform you that im using the same client for my test server and not experiencing any errors on any alternate bodystyles .
  18. I don't know if this will work to monsters killing other monster but give it a try /root/trunk/conf/battle/monsters.conf // Monsters level up (monster will level up each time a player is killed and they will grow stronger) // Exp rate is calculated ((monster level-original monster level)*(exp*(mobs_level_up_exp rate/100))) // NOTE: Does not apply to WoE Guardians. mobs_level_up: yes mobs_level_up_exp_rate: 1
  19. As Euphy said It's been renamed; all the "_db2" now follow standard naming, and are located in the import directory. You're looking for db/import-tmpl/item_db.txt. Item_db2 is now changed to the item_db.txt inside the import folder in your trunk file When you add an item in the item_db in the import folder it over rides the item_db.txt the pre-re/re item.db that you are using. the purpose of it is for adding custom items and custom monsters.
  20. ra_temsky,46,134,4 script Freebies NPC 655,{ mes "[Freebies NPC]"; mes "Welcome to Server Name!!"; if ( #NewbieGift > 0 ) { mes "[Freebies NPC]"; mes "You already recieved a freebies."; close; } mes "Here's your freebies.:"; getitem 7539,1000; getitem 7420,1000; set #NewbieGift, 1; next; mes "[Freebies NPC]"; mes "Please Select your Upper Headgear."; switch(select("Hat of Sun God:Lord Kaho's Horn")) { case 1: getitem 5022,1; goto Freebies2; end; case 2: getitem 5013,1; goto Freebies2; end; } Freebies2: mes "[Freebies NPC]"; mes "Please Select your Middle Headgear."; switch(select("Elven Ears:Sunglasses[1]")) { case 1: getitem 2286,1; goto Freebies3; end; case 2: getitem 2201,1; goto Freebies3; end; } Freebies3: mes "[Freebies NPC]"; mes "Please Select your Lower Headgear Headgear."; switch(select("Flu Mask:Gentlemen's Pipe")) { case 1: getitem 2219,1; end; case 2: getitem 5377,1; end; } } Account Based Only :))
  21. prontera,46,134,4 script Freebies NPC 655,{ query_sql ("SELECT `last_ip` FROM `login` WHERE `account_id`=" + getcharid(3) + "", .@lip$); mes "[Freebies NPC]"; mes "Welcome to Server Name!!"; if ( getd("$" + .@lip$ + "_NA") > 0 || #NewbieGift > 0) { mes "[Freebies NPC]"; mes "Your IP have already recieved a freebies."; close; } mes "Here's your freebies.:"; getitem 7539,1000; getitem 7420,1000; next; mes "[Freebies NPC]"; mes "Please Select your Upper Headgear."; switch(select("Hat of Sun God:Lord Kaho's Horn")) { case 1: getitem 5022,1; goto Freebies2; end; case 2: getitem 5013,1; goto Freebies2; end; } Freebies2: mes "[Freebies NPC]"; mes "Please Select your Middle Headgear."; switch(select("Elven Ears:Sunglasses[1]")) { case 1: getitem 2286,1; goto Freebies3; end; case 2: getitem 2201,1; goto Freebies3; end; } Freebies3: mes "[Freebies NPC]"; mes "Please Select your Lower Headgear Headgear."; switch(select("Flu Mask:Gentlemen's Pipe")) { case 1: getitem 2219,1; set #NewbieGift, 1; setd "$" + .@lip$ + "_NA", getd("$" + .@lip$ + "_NA") + 1; end; case 2: getitem 5377,1; set #NewbieGift, 1; setd "$" + .@lip$ + "_NA", getd("$" + .@lip$ + "_NA") + 1; end; } } Try this :))
  22. Change warp "savepoint",0,0; to warp "SavePoint",0,0;
  23. Maybe you can refer to this Monster fighting other monster topic
  24. i see i had the same problem some time ago and the cause is instances with wrong syntax, it causes a map server crash :)) if you have vnc viewer available use that to get the error from the map server.
×
×
  • Create New...