Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/13/12 in all areas

  1. 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
  2. What I usually do is take an original act from ragnarok and then make my act out of that. So if it is an animated headgear, you take an act of an animated headgear from ragnarok. This is how i make my acts but I don't know if there are other methods other people use.
    1 point
  3. you can call the function by just using the functionname in script. Read my snippet. ^ - script sample -1,{ function func_sample; func_sample(param1,param2,...); function func_sample { blablabla getarg(0) blabla getarg(1)... } }
    1 point
  4. http://rathena.org/board/topic/60864-web/ /web is clientside no packets are being sent to server when you do it so it isnt possible to force the user to type the /command when you do it with @command.
    1 point
  5. Last I remember, the client doesn't have an embedded web browser so... and if it did, you would need a client hack most likely via injection.
    1 point
  6. it cost too much....but sir.. if i try... for example, doing this... because i saw his IP's ranging from this 2... 180.194.*.* i tried adding it to ipbanlist im my sql...will the other players can be affected?
    1 point
  7. Yes, i'm new on rAthena i mean in this community but i can guarantee you i can fix it. Anyways, making using BrowEdit 586 or 620 as i said earlier, you can't fix it not totally fix some areas are fixes but everytime you walk in other tiles it will be blacken. Trust me. No Offense for this Brandon For all players having issues with 'Blackening Textures In-game' just hit this and follow. We will use the 'Hexing Method' Open 'XVI32' or any Hexing Editors. Find the .rsw,(File) open it up in a Hex Editor or XVI32, and look for "0201" on the first line and change it to "0109". NOTE: if you Hex the .gat(File) it will give you like this "unrecognized version". It should be worked, and i can guarantee it tested with Ivion 'Matrix Illion Map' Please give me some feed back. Regards, Nemesis / War of Immortals
    1 point
  8. It would be appreciated in the future if you searched the forums for the Izlude Map Fix first before starting up another thread regarding the same topic. This is probably the 4th topic addressing the same thing and we dont want topic duplicates asking about the same thing. Feel free to go to any of the topics below for your resolution. Option 1 Option 2 Option 3
    1 point
  9. There is no need for this you can just do 1. @main <-- to activate main chat 2. PM "Main" (no quotes) 3. send your message to it. 4. problem solved you are now able to send main messages without commands.
    1 point
  10. DOT is a poor choice of letter for this in my opinion. Messages where players start with ellipses will become part of mainchat very often. For example: It's a fairly common thing it to use. This doesn't mean I don't like the idea after all, I just think that there could be a better letter for it.
    1 point
  11. rAthena: Find: if( runflag != CHARSERVER_ST_RUNNING && (runflag != CHARSERVER_ST_MAINTENANCE || group_id != 99) ) Change to: if( runflag != CHARSERVER_ST_RUNNING && (runflag != CHARSERVER_ST_MAINTENANCE || group_id < 80) ) // Below 80 can't enter.. Find: if( (runflag == CHARSERVER_ST_RUNNING || (runflag == CHARSERVER_ST_MAINTENANCE && node->group_id == 99)) && Change to: if( (runflag == CHARSERVER_ST_RUNNING || (runflag == CHARSERVER_ST_MAINTENANCE && node->group_id >= 80)) && // Equal/Above 80 can login Find: if (atoi(data) != 99) { Change to: if (atoi(data) < 80) { //Below 80 can't login Find: if (pc_get_group_level(pl_sd) != 99) { // Only Admin(99) that will stay in maintenance Change to: if (pc_get_group_level(pl_sd) < 80) { // Kick player with group id below 80 eAthena: Find: < 99 Change to: < 80 Find: >= 99 Change to: >= 80
    1 point
  12. /web is all clientside it wont be sent to the server so that restriction thing wont work well with it.
    1 point
  13. @maintenance → kick all players except Admin → change map-server status to Maintenance → tell char-server to change status to Maintenance Player login → check if (server is in Maintenance and player is not an admin), if yes → block player at_maintenance.patch Usage: @maintenance <on/off>
    1 point
×
×
  • Create New...