Jump to content

iFoxkun

Members
  • Posts

    189
  • Joined

  • Last visited

Everything posted by iFoxkun

  1. Oh. But i don't wanna spend money D:. I'm poor you know xD. And my server, I don't like making people buy their equips with money. After my previous servers, which for their "support" constantly only says reinstall the server. Really? They only were after money. And didn't even give refunds etc if people lost credits due to bugged NPCs. So if I end up paying, I'd have to make a donation system which I dislike.
  2. I'd suggest you to create minigames, like poring catcher or things alike, and everytime you need a script, TRY to make your own instead of using one from eA or any other related website. That helped me a lot when I started, and now ..I'm pretty good. I don't use scripts from the old eAthena anymore considering this is more active. And I make my own scripts now, ;_;, and have someone else review it c: (Emistry) xD jk o-o <3 Z3R0 accepts my newbieness c:
  3. I did not understand 1 bit xD. That one confuses me
  4. It gives a warning for spamming. I just made a warning so that players are still able to use it after, but if spammed, you can give them a Warning it and / or jail or ban them. ~
  5. A TCG Shop made by Emistry o_o from old eAthena Forums prontera,138,183,5 script TCG Uppers 793,{ mes .name$; mes "You currently have "+countitem(.tcg_item)+" TCG."; mes "Would you like to look at the shop?"; next; if(select("Yes:No") == 2) {close;} close2; callshop "TCG_SHOP",1; npcshopattach "TCG_SHOP"; dispbottom "You currently have "+countitem(.tcg_item)+" TCG."; end; OnBuyItem: for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { for(set @j,0; @j < getarraysize(.TCG_ITEMS); set @j,@j+1) { if(.TCG_ITEMS[@j] == @bought_nameid[@i]) { set @itemcost,(.ITEMPRICE[@j]*@bought_quantity[@i]); set @totalcost,(@totalcost+@itemcost); break; } } } if(@totalcost > countitem(.tcg_item)) { dispbottom "You don't have enough TCG."; } else { for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } delitem .tcg_item,@totalcost; dispbottom "Thank you for shopping."; dispbottom "You now have "+countitem(.tcg_item)+" TCG left."; } set @totalcost,0; deletearray @bought_nameid[0],128; deletearray @bought_quantity[0],128; end; OnInit: npcshopdelitem "TCG_SHOP",909; // Leave this alone set .name$,"[TCG Uppers]"; set .tcg_item,7227; // Input TCG ID setarray .TCG_ITEMS[0],20001; // Item IDs - 128 max setarray .ITEMPRICE[0],30; // Item prices - Should followe ID's order for(set .@i,0; .@i < getarraysize(.TCG_ITEMS); set .@i,.@i+1) { npcshopadditem "TCG_SHOP",.TCG_ITEMS[.@i],.ITEMPRICE[.@i]; } end; } - shop TCG_SHOP -1,909:20 zOmg Thank you . Now i Need a broadcaster The TCG script credits go to Emistry. I'm testing out my broadcaster, wait 5 mins ~ Okay , xDD http://pastebin.com/rCTjz5YB Done ;D
  6. A TCG Shop made by Emistry o_o from old eAthena Forums prontera,138,183,5 script TCG Uppers 793,{ mes .name$; mes "You currently have "+countitem(.tcg_item)+" TCG."; mes "Would you like to look at the shop?"; next; if(select("Yes:No") == 2) {close;} close2; callshop "TCG_SHOP",1; npcshopattach "TCG_SHOP"; dispbottom "You currently have "+countitem(.tcg_item)+" TCG."; end; OnBuyItem: for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { for(set @j,0; @j < getarraysize(.TCG_ITEMS); set @j,@j+1) { if(.TCG_ITEMS[@j] == @bought_nameid[@i]) { set @itemcost,(.ITEMPRICE[@j]*@bought_quantity[@i]); set @totalcost,(@totalcost+@itemcost); break; } } } if(@totalcost > countitem(.tcg_item)) { dispbottom "You don't have enough TCG."; } else { for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } delitem .tcg_item,@totalcost; dispbottom "Thank you for shopping."; dispbottom "You now have "+countitem(.tcg_item)+" TCG left."; } set @totalcost,0; deletearray @bought_nameid[0],128; deletearray @bought_quantity[0],128; end; OnInit: npcshopdelitem "TCG_SHOP",909; // Leave this alone set .name$,"[TCG Uppers]"; set .tcg_item,7227; // Input TCG ID setarray .TCG_ITEMS[0],20001; // Item IDs - 128 max setarray .ITEMPRICE[0],30; // Item prices - Should followe ID's order for(set .@i,0; .@i < getarraysize(.TCG_ITEMS); set .@i,.@i+1) { npcshopadditem "TCG_SHOP",.TCG_ITEMS[.@i],.ITEMPRICE[.@i]; } end; } - shop TCG_SHOP -1,909:20 zOmg Thank you . Now i Need a broadcaster The TCG script credits go to Emistry. I'm testing out my broadcaster, wait 5 mins ~
  7. A TCG Shop made by Emistry o_o from old eAthena Forums prontera,138,183,5 script TCG Uppers 793,{ mes .name$; mes "You currently have "+countitem(.tcg_item)+" TCG."; mes "Would you like to look at the shop?"; next; if(select("Yes:No") == 2) {close;} close2; callshop "TCG_SHOP",1; npcshopattach "TCG_SHOP"; dispbottom "You currently have "+countitem(.tcg_item)+" TCG."; end; OnBuyItem: for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { for(set @j,0; @j < getarraysize(.TCG_ITEMS); set @j,@j+1) { if(.TCG_ITEMS[@j] == @bought_nameid[@i]) { set @itemcost,(.ITEMPRICE[@j]*@bought_quantity[@i]); set @totalcost,(@totalcost+@itemcost); break; } } } if(@totalcost > countitem(.tcg_item)) { dispbottom "You don't have enough TCG."; } else { for(set @i,0; @i < getarraysize(@bought_nameid); set @i,@i+1) { getitem @bought_nameid[@i],@bought_quantity[@i]; } delitem .tcg_item,@totalcost; dispbottom "Thank you for shopping."; dispbottom "You now have "+countitem(.tcg_item)+" TCG left."; } set @totalcost,0; deletearray @bought_nameid[0],128; deletearray @bought_quantity[0],128; end; OnInit: npcshopdelitem "TCG_SHOP",909; // Leave this alone set .name$,"[TCG Uppers]"; set .tcg_item,7227; // Input TCG ID setarray .TCG_ITEMS[0],20001; // Item IDs - 128 max setarray .ITEMPRICE[0],30; // Item prices - Should followe ID's order for(set .@i,0; .@i < getarraysize(.TCG_ITEMS); set .@i,.@i+1) { npcshopadditem "TCG_SHOP",.TCG_ITEMS[.@i],.ITEMPRICE[.@i]; } end; } - shop TCG_SHOP -1,909:20
  8. Actually when I got this to go online, I was gonna use x10Hosting, Thor Patcher, and make my own installer xD
  9. Hahaha, No this wasn't pointed directly at you my friend. I'm sure once people start joining the new eA people will be putting up coin exchangers and such so they can be considered a 'scriptor'. But seriously, I made the first Promotional Code script on eAthena but I never shared it until one guy decided to make one for everyone and release it :/ which ruined my unique idea... Well yeah that's true. Well. Now if feel like a noob at scripting after watching Z3R0's guide and I only watched the 1st Chapter which is basically only the commands mes, close, next, and close2 xD. And making an npc ;_____; My scripts are to simple . Must take precautionary actions, must increase script difficulty ;_________; xD
  10. I don't understand the getarg command at all? Anyone o_o
  11. </3 You hate my Coin Exchanger script don't you. But I didn't even know there was one already. +1 on this c;
  12. Can you explain on what to put for each IP. ;_; For Char_Athena.conf: For Map_Athena.conf For Subnet_Athena.conf: For Clientinfo.xml: All of you guys are so confusing ;_;. What do you mean Port Forwarding LAN ips o_______o I port forwarded already. My Public IP is right now (Will change) : 76.208.159.145 Private IP is 192.168.1.67... *EDIT* It doesn't show the thing anymore (picture 2posts above) But it says Failed to Connect to Server
  13. iFoxkun

    :3

    Oh yeah, I'm so forgetful/supid ;x, I think Around West LA xDD
  14. Ahh can you re edit my signature please Cyber ;D Color : Keep the same please Name: Same please Size: Same please Anime: If possible can you change the picture to this Animation: Can you include this to the animation with the ice: 100x / 100x / 20x Sorry for asking again >_<; Thanks!~
  15. iFoxkun

    kpop.

    ASDFGHJKL; Tablos my favorite too xD.
  16. I tried that guide, I did not understand 1 bit. ;x
  17. So that means I must put my no-ip on all of them ;_______; *EDIT* This is what happened when I used all WAN ips, I havent even put in my clientinfo.xml ;_;
  18. I'll make a .txt version so for people who have really bad connection can just read it
  19. Cross That I just need an NPC script for it~ Thanks D:
  20. iFoxkun

    :3

    ASDFGHJKL; Yeah 1 D;. Hao do you know I'm from La D:. I have more filipino friends ;_;. WHY xD. I want more asian friends ;D
  21. Added, Thanks Genuine, Credits are also added next you your link above ;D
  22. What do you mean by that o_O? When you select between the two option("I want to feel divine punishment:Request Help"), it should be random. Oh. I have no clue how to use Algorithm so thats gonna be hard xD. You can edit it if you like, but just keep the credits c:
  23. //~~~~~~~~~~Scripts Made By Karul~~~~~~~~~~ ~Terms of Agreement~ You can NOT take credit for any script that I have made or others that have edited and was posted on this topic. You can NOT remove the credit tags saved on the scripts and re edit & repost my work. You can NOT redistribute my work into any other websites without my consent. You CAN edit my work, but leave the credit tags. Rate my work and PM if there is anything wrong. If my work is found on any other site besides eAthena, PM me at once, with the information of the website & link. By downloading and using it on your server, you accept the Terms of Agreement above. Thank You for using Karul's Scripts. Also, please thank those who edit these script and has been posted here. ~ Arigatou Gozaimas ~ ** Sorry, I don't make automated events because I dislike them ** Support NPC Game Master Event Starter! support.txt broadcaster.txt TCG Event.txt satancatcher.txt crack the safe.txt gmeventroom.txt
×
×
  • Create New...