Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/22/14 in all areas

  1. What I would like is for every single type of command that creates a monster/player/npc/pet/merc anything to return a GID... I would also like an attachgid and a checkgid.... those are most important to me currently.
    2 points
  2. 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 Topic
    1 point
  3. Afternoon all! I've just read over the iRO patch notes for this week and noticed that Ragnarok Online was entered into a competition on mmobomb.com and is doing rather well. In the next heat in the Rogue Division (where RO is competing in) it's up against Mabinogi, and from what i can see of the comments it looks like it's going to be a close call. How do you guys feel about voting and giving RO a helping hand? Voting for the next heat for the Rogue Division ends on the 21st of March, more details can be seen here: http://www.mmobomb.com/ultimate-f2p-showdown?nxid=10 P.S. iRO are going to provide a double exp event if RO gets through to the next round.. if anyone is playing official servers and want that extra exp boost then forward people you know to the above link!
    1 point
  4. just copy the whole folder and it will works both addons. all you need to edit is the config\application.php for your fluxcp2 only. 'BaseURI' => '/fluxcp/', to 'BaseURI' => '/fluxcp2/', so every time you chose fluxcp2 when you click a link it will redirect you to fluxcp.
    1 point
  5. you can copy the whole folder of your already installed fluxcp. just like making a backup. ex. fluxcp = your main cp fluxcp2 = your backup cp so if you fluxcp main having an issue. you can switch your fluxcp to fluxcp2 yourro.com/fluxcp to yourro.com/fluxcp2. and it will works fine since the required installation files and logs is already installed on fluxcp. all you need is to copy it.
    1 point
  6. it is possible to do by switching themes. just like on the default fluxcp on Hercues. you can switch themes from default to emphaino.
    1 point
  7. @scriptor Depend, if you are not setting it up, it will fallback to the use of JAVA. So it will mean your users will need JAVA applet installed on their computers, and for security reason, an evil popup will spam informing your user each time that the app isn't securized (you'll need to pay Oracle to change the message on this popup). Project is Open Source I just updated the first post, if you miss it the project is open source since October and got massive updates. As everything is explained in the first post I will just write about the news you miss. October Items are now falling properly in map Correct some bugs with actions/animations. Implemented character status window (not available yet, waiting for equipment window). Added NPC cutin Added inventory window Added Item information (right click on an item) Added ground shadow to sprites Added picking priority Added status icons Added npc mark to minimap Added components preferences to save their last x, y position in screen. November Add equipment window Massive fix Introduce support for Chrome App (and kill Java applet) Add progressbar packet Add BGM/sound packets Add attack combo Add new Intro window Add weapon sounds December Re-introduce ModelViewer in GRFViewer. Introduce MapViewer in GRFViewer. Add some tests (src/Tests) to load all files from your GRFs and detect possible errors with loaders. Fix some memory leak. Fix some CSS problems on Firefox. Big rendering optimization (remove the use of gl.readPixel increased the performance). Adding shop/afk to the game (not clickable for now). January Save files (and full client) features in Chrome. New Async MapLoader and File fetcher (really faster). Add Storage UI Hello WebSocket Proxy (and Kill java !) Add missing 2013 packets Some basics support for party/guild packets (dipbottom / viewpoint in minimap, entity's life) February Add Packet Key system (alias Hercules WPE free) Add check before start up to avoid errors Fix some bugs in IE11 - now waiting for the IE 11 dev team to update their rendering engine Add shortcut Introduce ChatRoom Introduce Audio settings UI Introduce Game settings quality
    1 point
  8. I'd also like to add getmobgid and getchargid. It probably would've been best to use gid for everything instead of rid. For those who don't know I'm not talking about Guild ID. What I'm talking about is Game ID... This is a unique ID given to every entity in your server. I feel it is extremely useful. We could use one command to return information from any interactive object instead of separate commands. Example: getstrgidinfo(<gid>,<type>{,<object>}).
    1 point
  9. Stydianx's post reminded me that you have to delete characters to... but there is also a bunch of other information to delete. CREATE TEMPORARY TABLE TmpTable AS (SELECT `account_id`,`char_id` FROM `char` WHERE `account_id` IN (SELECT `account_id` FROM `login` WHERE `lastlogin` < (CURRENT_TIMESTAMP - interval '5' month))); #Add tables to delete from here. DELETE FROM `guild` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `skill` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `quest` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `mercenary_owner` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `auction` WHERE `seller_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `mercenary` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `memo` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `inventory` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `hotkey` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `cart_inventory` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `homunculus` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `friends` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `global_reg_value` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `elemental` WHERE `char_id` IN (SELECT `char_id` FROM TmpTable); DELETE FROM `pet` WHERE `account_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `party` WHERE `leader_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `guild_member` WHERE `account_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `sc_data` WHERE `account_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `storage` WHERE `account_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `char` WHERE `account_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `login` WHERE `account_id` IN (SELECT `account_id` FROM TmpTable); DELETE FROM `login` WHERE `lastlogin` < (CURRENT_TIMESTAMP - interval '5' month); DROP TABLE TmpTable; Will delete all accounts that haven't logged in for less than 5 months.
    1 point
×
×
  • Create New...