Jump to content

Meister

Members
  • Posts

    841
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Meister

  1. Hi! I would like to request an Item Synthesizer script that goes like this.. A script in which will do the following: • Check base level if 130 above if 130 above, he can synthesize an item... What kidn of items? http://forums.irowiki.org/showpost.php?p=1260410&postcount=12 - The improved items only. Why make this even it doesn't exist on current item_db? - I'll try to make it <3 • If the player uses the script, quest items will be checked! If he forget any of the quest items, the NPC will tell him what's missing. That's all! Thanks!
  2. Lua files. particularly accessory ID. or view ID ?
  3. Still the same Fatal error! I really can't get it to work BTW, I've edited 2 php.ini files.. 1. php.ini-dist 2. php.ini-recommended both files have extension=php_sockets.dll and I removed ";" before it. Yet still not working.. I tried also restarting my computer and nothing happened. Still the same. BUMP
  4. edit php.ini , remove the ; before extension=php_sockets.dll Found it. After removing it. Do I need to reinstall PHP or restart my PC? Clarify me on this. Thanks!
  5. done. how about the header part? i want to make all of the background black.. how to do it?
  6. How can I apply this to the blue theme of flux? Thanks! Can someone give me a tutorial? I prefer this simplicity of design. Just want to apply all of this to the current default theme.. Thanks for your help! Please don't be rude! Hehe. Edited: Or can someone cut this into pieces so that I can put it on default theme? Thanks! ) FluxDefaultTheme.psd
  7. http://pastebin.com/raw.php?i=84tP3D9k -- is this the one emistry? what if I like to add this twist.. OnPCLoginEvent: for his first hour.. 1 tcg and 2nd hour 1 tcg the no. of hours will count as .. 1-2-4-8-16-32- (multiplier by 2) and when it reach 24 hours.. it will announce "Holy Fudge! You've been online for a day now!" every check in time it will give 1 TCG but for 24 hours it will give 100 cash points.. can you edit it to that one?
  8. Requesting a script that logs player's total time played since first login and.. a script that records the time of the player played for his/her first login of the day.. and for every hour item will be given to him.. and when 24 hours or past or when he/she logouts and already 24 hours has past since his first login. the log will be removed then and it will be used again for the same mechanics.. Thanks!
  9. Example. I want to give the player an @go command but there's a condition.. Condition: If and only if the player is a 1st job or not novice.. How to set it? Thanks in advance! -- I have a question. what if I want to disable @go command for novice should I try this? - script Sample -1,{ OnInit: bindatcmd("go","Sample::OnAtcommand"); end; OnAtcommand: if( Job == Novice ){ message strcharinfo(0),"@go command is disabled for your job/class"; }else{ opengo; end; } this? correct me if I'm wrong thanks.
  10. It won't no, it will overwrite the bubble / battle manual. And if "premium" was active before, you just can't use the bubble gum / battle manual. Give me your contact details and i'll tell you how to add a new buff to your client & server. *EDIT* Added you, accept the invite please. Edited. Solved! Kindly close this topic! Special thanks to shadowseph! A great tutor and a friend! wooot!
  11. I have.. I'll message you with it. Thanks! Will this work if I still use Bubble Gum and Battle Manual?
  12. I really don't know what eamod source looks like. I just browse the net for some scripts and my findings led mo to that script. So don't have idea that it also needs src modification.. Anyways, if this isn't possible. I would like to request mods to just close the topic. thanks!
  13. Can someone finish this premium account script? I'm noob at scripting.. Thanks Please finish the following: 1. The premium account - What is it? - Player will talk to the NPC and there's an option if he/she wants to become a premium player or wants to have a premium account. And if he wants then he'll need to pay cash points.. What is premium account? - - an account that will give him/her an advantage to other players like boosting his/her exp, drop, and discount rates.. Also, when the player acquire premium account status he/she will know when his premium account will last. It will be displayed when he/she will login. Example.. Player A log-on.. A message will welcome him/her saying "Your premium account status will end in +time, seconds, day" That's all. Edited /// Premium Account // Users can come to this script to pay for Premium Time. This mode runs only in the current Account, and expires when the Premium Time is over. // You can configure bonus experience, discounts in cash shops, and @commands available for Premium Account only. // Premium Account conf/battle settings ( see eAmod.conf ) // Extra experience Bonus when killing mobs. Value is from 0 to 100, as a Percent. Example 5 = 5% //premium_bonusexp: 100 // Discount when using Cash Shops. Value is from 0 to 100, as a Percent. Example 5 = 5% //premium_discount: 20 // Drop boost for Premium account users. Value is %, where 5 become 5%. // The bonus drop increases the normal drop rate just like Bubble Gum does. // If normal drop is 30% and premium_dropboost is 10. The final drop rate will be 33%, not 40%. //premium_dropboost: 100 prontera,145,171,5 script Premium Account 864,{ // Settings: ----------------------------- set .@Cost, 10000; // Cash Points required set .@Time, 4 * 7 * 24 * 60 * 60; // Time in Seconds = 4 weeks, 7 days per week, 24 hours per day, 60 minutes per day, 60 seconds per minute. = 1 month in this sample. set .@Time$, "1 month"; // --------------------------------------- mes "[Premium Account]"; mes "I am the Premium Account seller."; if( isPremium == 1 ) mes "Your Premium Account expires in ^FF0000" + callfunc("Time2Str",#Premium_Tick) + "^000000."; mes "What can I do for you?"; next; // isPremium() returns 1 if the current user Account is Premium and it have not expired. // It works together with #Premium_Tick, which is a Account Var set with a Unix Time value, representing when the Premium Account expires. // isPremium() is the same as #Premium_Tick > gettimetick(2) switch( select("Pay for Premium Time:About Premium Account") ) { case 1: mes "[Premium Account]"; if( isPremium == 1 ) mes "Do you really want to extend your Premium Time?"; else mes "You do really want to convert your account to premium?"; mes "Premium Time is ^FF0000" + .@Time$ + "^000000"; mes "Value is ^FF0000" + .@Cost + "^000000 Cash Points."; next; if( select("Yes:No") == 2 ) { mes "[Premium Account]"; mes "Come back if you change your mind."; close; } if( #CASHPOINTS < .@Cost ) { mes "[Premium Account]"; mes "You don't have enough Cash Points."; close; } if( isPremium == 1 ) set #Premium_Tick, #Premium_Tick + .@Time; // Time Extension else set #Premium_Tick, gettimetick(2) + .@Time; // New Premium Account set #CASHPOINTS, #CASHPOINTS - .@Cost; mes "[Premium Account]"; mes "Congratulations!!.."; mes "Remember your Premium Account expires in ^FF0000" + callfunc("Time2Str",#Premium_Tick) + "^000000."; close; case 2: // Edit this messages to explain your Users about the Premium Account in your server. // ---------------------------------------------------------------------------------- mes "[Premium Account]"; mes ""; mes ""; mes ""; close; } }
  14. simply because some commands are useful on the said map.. don't want to disable it.. Fixed!
  15. Geez! Thanks man! Noob me! I declared it as || (
  16. Yeah. But didn't work when trying the command. Even my admin account can't use @storage command at a particular map where mapflag nostorage is issued. How to solve it? Here's my current code.. ACMD_FUNC(storage) { if(map[sd->bl.m].flag.nostorage || pc_get_group_id(sd) < 2) { clif_displaymessage(sd->fd, msg_txt(527)); return -1; } else { still my admin account can't use storage at a particular map..
  17. ACMD_FUNC(storage) { if(map[sd->bl.m].flag.nostorage || pc_get_group_level < 2) { clif_displaymessage(sd->fd, msg_txt(527)); return -1; } else { nullpo_retr(-1, sd); } it doesn't recognize the group id when admin use @storage command he/she can't use the command. Can someone fix this? Thanks!
  18. How to disable @storage command when.. The War of Emperium is on-going? The Player is on at instance map? (sealed shrine, endless) and lastly when the Player is at a particular map? Thank you!
  19. uncheck read data folder first sa pag diff mo ng client para okay.. dapat .grf na ang binabasa niya at set mo yung sciclient ip address mo sa server mo pag i pack mo yung grf mo..
×
×
  • Create New...