Leaderboard
Popular Content
Showing content with the highest reputation on 05/02/12 in all areas
-
Send an e-mail to hotmail Send an e-mail to gmail with a attachment e-mail system logs file (time,operator,receiver,subject,body) Download Source Code : email.patch E-Mail System.txt Download VBScript (Must put into your server program folder) : sendemail.zip Set : Open sendemail.vbs (with txt), write your mail account into Const fromEmail and password into Const password. If your e-mail server is gmail (Google), you will not not need to do anything after that. if not, you have to search that server stmp and port. Script Sample : email "receiver","subject","body","attachment"; input .@a$; input .@s$; input .@b$; mes "To:"+.@a$; mes "Subject:"+.@s$; mes "Body:"+.@b$; select("OK"); //set .@att$,"D:/eAthena/UpgradeLog.XML"; //attachment email .@a$,.@s$,.@b$,.@att$; close; PS : Testing \ Works in Windows7 OS. Warning : If this lead to SPAM, CRASH or ANYTHING BAD, I will not help you and be responsible for it. So checking all before using it.4 points
-
E - Script Collection Last Update : September 10, 2013 Refine Function SQL Mission Board Monster Marching Vendor Control Advanced Stylist Coin Exchanger Doppelganger Race Of The Day Limited Items Multi Currency Shop Random News GM Online List Link Broken E-Inquiry DotA Runes Flower Counting Game Class Restriction Chain Quest Build Manager Misc Scripts : Freebies Script Card Trader Gold Room [ Pick Gold ] Gold Room [ Guild Tax ] Map Restriction [ GM Based ] Daily Reward Monthly Reward Monster Spawner Monster Summoner with Last Summoned Display Players Stats & Equipments 3rd Job Item Giver Exchanger [ Cashpoint to Coins ] Exchanger [ Poring Coin - Zeny ] Exchanger [ Points to Tickets ] Exchanger [ Item to Item ] Exchanger [ Item to Item ] Exchanger [ Multi Item to 1 Item ] Party Match Auto Ban Over Stats Users Soul Link Buff Kill Players gain Cash Points Party Members All Get Items [ Snippet ] Message Board Stalker Class Skill Reproduce NPC Multiple Selection Quest [ Template ] In-Game Item Rewarder In-Game Points Rewarder Invasion Event Custom Item Rate Status Point Seller [ Snippet ] Anti Bot Security Script Anti Bot Script [ Code / Question ] Item Combo Restriction [ LHZ Card ] Drop Item Upon Death PVP Switcher + Announcer [ Guild Master ] Rotating Waitingroom Messages +10 Refiner [ Specific Items ] Random Rate Item Exchanger MVP Invasion Premium Users [ Boost Rates ] Display Cutin Image upon Login Custom Randomed Box Items Kick GM during WOE Custom Crafting NPC Restrict Same IP [ Certain Map ] Coloured Items Exchanger Guild Master Changer Party Team PK Match Gambling Game IRC Channel Crafting NPC Guild Storage Restriction Stage Game [ Version 4 ] Monster Wiki Event [ Version 3 ] Special Thank you for my Tutor : Notes : I am a bit lazy to write all those Script Descriptions, i do believe that all of you able to get how this script works. Anyway, i will still doing my best to write the Updated Changelog or informations about the script as detail as possible. All the Scripts above are uploaded to Pastebin . Abide the Following Rule : Scripts Error / Not Working , you have to Explain it in Details. ( Add in Images / Modified Scripts ) Do not SPAM / BUMP in my Topic. Do not ask for Support stuffs for other Scripts in this Topic. Link Down , then drop [ @Emistry ] a message. I Reserved the Right for NOT Answering your Posts if you did not abide my Topic's Rules. Keep This In Your Mind : All the Scripts i distribute here are NOT FOR COMMERCIAL USES . DO NOT remove my Credits if you are using part of the scripts to modify your own. DO NOT re-release the scripts in any form / way. If you ♥ these Scripts , Click on to Vote this Topic up. Or you may also click on at above the Topic2 points
-
Common - Family month event started. Event Period: 5/03/2012 ~ 5/30/2012 - Fixed Kuritura Academy quest: "Carrots are delicious" where an incorrect required number of carrots were shown in the quest window. - Fixed a bug with god item, Megingjard, where its +10% bonus physical damage to boss monster option was not working. Mains - WoE: TE guild dungeon Job EXP event started. Event Period: 5/03/2012 ~ 5/16/2012 - WoE: TE guild dungeon EXP and Drop event ended. Sakray - Jormungand's Rib item weight has been decreased from 2000 to 1000. - Pressing F11 key to enter screenshot mode will no longer block user chat and other information messages. - Fixed a display bug with /lightmap command where the object shadow would appear to be displaced on the ground. Credits: zr0rieu2 points
-
Summary As of r15982, variables used within scripts can be directly assigned to as you would using another programming language. That is to say, that the following set of predicates will work: @i = 1; @i++; @i *= 2; @i = @j = 1; @i -= @j; for( @i = 0; 10 > @i; @i++ ) { } while( (@i += 1) < 20 ) { } Support for all of the major operator methods have been included (+=, -=, /=, *= etc.) This announcement is to ensure that any and all problems encountered while using this method of accessing variables must be reported, along with any traces you can possibly provide (and a clear example of the script is appreciated.) This comes as a secondary update to the scripting engine to unify the language to conform to standards set by other languages. The scripting engine now supports both the direct invocation of user-defined functions (r15979 and r15981) and variable access systems (r15982.) Notes This does not affect previous scripts at all. The new engine converts patterns that match var = value; to set(var, value); for backwards compatibility. Testing was performed using all of the operator methods, and was tested using loops. However, nested operations have not yet been thoroughly tested.1 point
-
Hi, in order to improve Rathena dev I believe we need a better inner documentation, as it been said many time. There was no real improvement here for existing code even trough new one had huge comment. So I did a little documentation myself, very basic but may be usefull, I gave it some time before on irc but doesn't seem you guys wanted to comit it so here it is : http://pastebin.com/zB9rBZJb Another subject of great important is all the ignore warnings x in the configure script. Thus creating and compiling our file without those check or at least thoses warnings. So now let's face it what the points of ignoring some warnings ? Are we so great that we know our code so well that we don't need to check warnings ? Even so we still could show them and ignore it'd be better then saying don't even tell me nothing about it. And if it was the case we wouldn't spent so much time trying to fix somes trivial warnings even trought when fixing them we create others warnings that we don't know about cause we don't show them... Finally this would help people doing mod. Ok now to speak more concrete we have those building option : Wno-sign-compare -Wno-unused-parameter -Wno-pointer-sign -Wno-switch -fno-strict-aliasing The only one understanble may be wno-switch since we have really long enumeration sometime, and that adding default : break; isn't something pretty. fno-strict-aliasing may also still since will have to rewrite a lot to match it but it may be good to do it for optimisation : http://cellperformance.beyond3d.com/articles/2006/06/understanding-strict-aliasing.html Finally here a quick diff for configure to see our current warnings without the overrinde : http://pastebin.com/UWUisbTi It's quite ugly but it's just to see the warnings, we may add a configure options in future to add those flag or not.1 point
-
Hi! I'm the new head developer of CeresCP and I'm in charge of bringing it back it's glorious days. I've been working on rewriting ceresCP core completely to make it as flexible and performance-efficient as possible. I'll make it a A-class web application. And all this awesomeness will need a new look, and that's what this thread is for. CeresCP Theme Contest Prize Winning theme will be featured as the default theme in the rehash of CeresCP All cerescp users will have your theme as their default Your personal website/portofolio/whatever will be linked to at the footer of the theme, "Designed by <a href="'http://your.portofolio.personal.site.whatever.com'">Your Name</a>", granting you and your work great acknowledgement and exposure. Information I do recommend you to have a open mind on the design, forget how the current cerescp design is and works, let your design skills run free. Theme should work flawlessly in all major browsers (Internet Explorer, Firefox, Chrome, Safari and Opera) How to submit your work: take a screenshot of it on a browser and post here (no psds! only html (aka fully-working theme) accepted) -- use the forum attach file function if you like. There will only be a winner if any of the submissions are actually used (aka I will only have someone win if I like a submission) Be aware that if you're the designer of my chosen submission I might ask you for minor tweaks on the theme before making you the winner. Deadline: There is no damn deadline. I will close the contest when I choose a submission (or when I get tired of waiting a submission) Should there be any new information I'll update this post and post a reply to this topic letting you know about it. If you have any questions post in this topic. footer-note: why this is the "arts & writings" forum? because jman said this topic belongs here. 1st update (17 march) I'd like to remember however that you are not required to run your design over the control panel. you can simply create a html with your theme in any shape or form you design it to look like, since the new ceres panel was completely rewritten I do not require you to have your design adapt to it -- I will have the control panel fit the winning design.1 point
-
File Name: Rainbow Road File Submitter: Syouji File Submitted: 02 May 2012 File Category: Maps & Textures Content Author: Syouji This is my own creation of Mario 64's rainbow road. All textures are custom including the models except for 1 of the star models. You can use this map as a race track which is what this map was created for or events or w/e else you want. Click here to download this file1 point
-
1 point
-
#baselevel "Cute KeiKun" 150 in commands if this right.. ( i haven't done test with commands ) you use " " for things that have spaces1 point
-
A lot of these comments are redundant and should be removed, actually. Commenting isn't really a competition or anything. If the code speaks for itself, then it's fine.1 point
-
for future reference, can you please state what you did so when others try to fix the same issue? this thread may be able to help.1 point
-
I've seen this issue over and over ever since eathena. I advice you to search and wiki also has most of the installation guides. Anyway here's the fix for your problem. CLICK ME!!!1 point
-
Also a question...How can I make it so it doesnt show "[iTEMID]" on the shops? I wanna make all vending use only 1 currency which is an item but I dont want it to show like "[Cash] Store Name", "[TCG] Store Name"1 point
-
1 point
-
1 point
-
if you want..maybe you can try it like this ? xD go near the NPC and say "start" or "stop" brasilis,258,60,0 script School of Fish#1 844,{ OnStart: set @Fishing,1; while( @Fishing ){ if (isequipped(2764)) && (isequipped(2775)){ specialeffect2 EF_BUBBLE; set .@fcast,15; if (isequipped(2550)) { //Fisher's_Muffler set .@fcast,.@fcast - 3; } if (isequipped(2443)) { //Fish_Shoes set .@fcast,.@fcast - 2; } progressbar "ffffff",.@fcast; if (rand(1,20) == 2) { getitem 6096,1; //Big Fish specialeffect EF_BUBBLE; mapannounce "brasilis","" + strcharinfo(0) + " has caught a Blue Fish!!!",bc_map,"0xff77ff"; end; } set .@rhea_ran,rand(1,70); if (.@rhea_ran < 20) { getitem 579,1; //Fresh Fish } else if (.@rhea_ran == 20) { getitem 908,1; //Spawn } else if (.@rhea_ran == 21) { getitem 909,1; //Jellopy } else if (.@rhea_ran == 22) { getitem 963,1; //Sharp_Scale } else if (.@rhea_ran == 23) { getitem 956,1; //Gill } else if (.@rhea_ran == 24) { getitem 6049,1; //Marlin } else if (.@rhea_ran == 25) { getitem 918,1; //Sticky_Webfoot } else if (.@rhea_ran == 26) { getitem 960,1; //Nipper } else if (.@rhea_ran == 27) { getitem 910,1; //Garlet } else if (.@rhea_ran == 28) { getitem 938,1; //Sticky_Mucus } else if ((.@rhea_ran > 28) && (.@rhea_ran < 40)) { getitem 624,1; //Rotten Fish } else { mes "Nothing was caught."; close; } if (rand(1,200) == 3) { getitem 644,1; //Gift_Box mapannounce "brasilis","" + strcharinfo(0) + " has caught a Gift Box!!",bc_map,"0x00ffff"; } if (rand(1,500) == 3) { getitem 603,1; //Old_Blue_Box mapannounce "brasilis","" + strcharinfo(0) + " has caught an Old Blue Box!!",bc_map,"0x00ffff"; } if (rand(1,3000) == 3) { getitem 617,1; //Old_Violet_Box mapannounce "brasilis","" + strcharinfo(0) + " has caught an Old Purple Box!!",bc_map,"0x44ff44"; } end; } } end; OnStop: message strcharinfo(0),"Auto Fishing Stopped."; set @Fishing,0; end; OnInit: defpattern 1, "start", "OnStart"; defpattern 1, "stop", "OnStop"; activatepset 1; end; }1 point
-
Hi Anna, Everyone on this thread has nailed the fine points of using Linux over Windows; and when to actually use Windows. If you have absolutely no experience with Linux, you would either start with a company which provides a easy set up of Linux for a newbie to easily use, or just use Windows. Windows cost more money because Microsoft charges for the software; Windows also uses more RAM and CPU. Linux on the otherhand, is cheaper and is very great on saving resources; it allows you to run other things such as the rAthena Emulator and a MySQL server on a server with less RAM. Thanks to @Kaito_Kid for mentioning us, we do try our best to make our services newbie friendly. But once you get the hang of Linux, a lot of people usually try to find a better deal or move to a dedicated server. But I will point out the details that a lot of people miss... (things to consider for running an RO server on a VPS) 1) CPU power, how much do you get? If you have less CPU allocated to your server, can it handle the load? 2) RAM type, is it truly dedicated or is it made up of burst? Is it DDR3 or DDR2? If it's DDR2, is it ECC? 3) Bandwidth, do you get a good mix of bandwidth providers for a good connection for everyone around the world? 4) Hard drive, is it slow? How much RPM? Does it include RAID so that your data is always protected, even in the case of drive failure? 5) Oversold? Are the resources you pay for... really dedicated to you, or is it being shared and oversold to others? So even though some VPS sellers are really cheap, you must consider those things before making a solid purchase. Otherwise, you may regret it; lose players, waste time, and money.1 point