Jump to content

clydelion

Members
  • Posts

    754
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by clydelion

  1. Next, LUA Generator! :]

    1. EvilPuncker

      EvilPuncker

      you mean a lub to lua? if yes, then it will be really f*cking awesome :D

    2. clydelion

      clydelion

      There are a lot of lub dis-assembler out there. No need for another :D

      What I'll make is a program to append new lines for custom items :)

      I may have to delay developing this though, need to improve other apps first. /heh

  2. Version 1.1

    733 downloads

    This program parses your idnum2itemdisplaynametable.txt to synchronize your item_db.txt with it. Note: Requires .NET Framework v4.0 For example: Your txt file contains this 501#Super_Red_Potion# and initially your itemdb has this 501,Red_Potion,Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} after patching the item_db entry for 501 would be 501,Red_Potion,Super Red Potion,0,50,,70,,,,,0xFFFFFFFF,7,2,,,,,,{ itemheal rand(45,65),0; },{},{} Note: This program parses the TXT per line, so it is better to close all other programs that require intensive memory. Note2: You can use any txt file with the same format as idnum2displaynametable.txt itemid#item_name# include only those you want to patch, and remember that all underscores (_) are treated as a space. This is free, but if you find this tool useful, you can express your love through my paypal email: [email protected]
    Free
  3. those files are for xray clients only..
  4. clydelion

    R > Command

    It works the same way xD
  5. clydelion

    R > Command

    try Euphy's suggestion -<tab>script<tab>donate<tab>-1,{ OnInit: bindatcmd("donate","donate::OnCommand"); end; OnCommand: switch(select("Upper:Mid:Lower")){ case 1: close2; callshop "dupper",1; end; case 2: close2; callshop "dmid",1; end; case 3: close2; callshop "dlow",1; end; } } remove donate in atcommand.c
  6. clydelion

    R > Command

    @Euphy Do you still need to add @donate to src then it binds on it or bindatcmd creates a new command?
  7. clydelion

    R > Command

    the clif_cashshop_show(sd,nd);
  8. clydelion

    R > Command

    - script donate -1,{ OnCommand: switch(select("Upper:Mid:Lower")){ case 1: close2; callshop "dupper",1; end; case 2: close2; callshop "dmid",1; end; case 3: close2; callshop "dlow",1; end; } } change the npc call part in atcommand.c to npc_event(sd,"donate::OnCommand",0);
  9. clydelion

    R > Command

    Didn't know that Euphy. That's a better way though. Cool.
  10. clydelion

    R > Command

    can you upload the whole script? Didn't really get your point.
  11. clydelion

    R > Command

    change npc_click(sd,nd); to clif_cashshop_show(sd,nd);
  12. do you have a SaveData folder in your RO root dir? and try to use this instead. http://supportmii.com/ro1/Clients/Judas_Setups/2011_Setup/Setup.exe
  13. clydelion

    R > Command

    Index: atcommand.c =================================================================== --- atcommand.c (revision 16424) +++ atcommand.c (working copy) @@ -8580,6 +8580,19 @@ return 0; } +/*========================================== + * @donate + *------------------------------------------*/ +ACMD_FUNC(donate) +{ + struct npc_data *nd = npc_name2id("donate"); + + nullpo_retr(-1, sd); + + npc_click(sd,nd); + return 0; +} + /** * Fills the reference of available commands in atcommand DBMap **/ @@ -8590,6 +8603,7 @@ * Command reference list, place the base of your commands here **/ AtCommandInfo atcommand_base[] = { + ACMD_DEF(donate), ACMD_DEF2("warp", mapmove), ACMD_DEF(where), ACMD_DEF(jumpto),
  14. Currently, you can't create a new class. All you can do is replace one of the classes.
  15. File Name: RO converter File Submitter: clydelion File Submitted: 01 Aug 2012 File Category: Client Tools Content Author: clydelion Note: Requires .NET Framework 4.0 This program converts ansi encoding to item id. Step 1: Select your idnum2itemresnametable.txt Step 2: Select your textures with ANSI encoded filenames (Unicode won't work) Step 3: Select output directory. Ste[ 4: Press Convert and wait. It'll take some time so be patient. Click here to download this file
  16. Version 1.2

    1230 downloads

    Note: Requires .NET Framework 4.0 This program converts ansi encoding to item id. Step 1: Select your idnum2itemresnametable.txt Step 2: Select your textures with ANSI encoded filenames (Unicode won't work) Step 3: Select output directory. Ste[ 4: Press Convert and wait. It'll take some time so be patient.
    Free
  17. Yes, it can be used in other websites, as well as other RO control panels. That can be done c/o MagpieRSS :] Yes if you can control the rss generated by your website OR if you know string manipulation in php. substr("string to be manipulated", 0, 80); where 80 is the number of characters to be shown.. Yes, below is an example to show only the Title + date <?php foreach($rss->items as $item):?> <h4><?php echo $item['title'] ?> <?php if(isset($item['pubdate'])): ?> <small>on <?php $item['pubdate'] = date ('l, F dS, Y', strtotime ($item['pubdate'])); echo $item['pubdate'];?></small> <?php endif; ?> </h4> <hr/> <?php endforeach; ?> another example where you can click the title to direct you to the thread. <?php foreach($rss->items as $item):?> <h4><a class="news_link" href="<?php echo $item['link'] ?>" target="_blank"><?php echo $item['title'] ?></a> <?php if(isset($item['pubdate'])): ?> <small>on <?php $item['pubdate'] = date ('l, F dS, Y', strtotime ($item['pubdate'])); echo $item['pubdate'];?></small> <?php endif; ?> </h4> <hr/> <?php endforeach; ?>
  18. It is improper to post in all caps. Across the internet, all caps may be interpreted as a shout to everyone who can read it. Please observe proper netiquette. Para sa kwestyon mo.buksan mo ang conf/skill.conf at hanapin mo to // Allow use of ES-type magic on players? allow_es_magic_player: no gawin mo lang yes
  19. @Decimal I'll take note of that. Anyway, that's good to hear. @GM Helena Harper Momoe That's great. If you have any suggestion to further improve this add-on, just tell me.
  20. lol, I forgot to change ipbrss to news before uploading.. make that 'news' => array(
  21. Cool. *_* How about the (thread specific)thanks meter suggestion? This would really motivate us(normal rathena users) to release something for the community. Its okay for us to release something to the community for free, but it would mean a lot if we can see people appreciating our work. It is also better to see a total number of thanks you points in our profile OR below/above the warning points.
  22. you can accomplish that by using this http://rathena.org/board/topic/56124-package-getitem-map-itemmap/
  23. warp "hard_pvp",0,0;
  24. Yes. You must have a torrent application though like utorrent, etc.
  25. here's a start. http://miruku.rathena.org/
×
×
  • Create New...