Jump to content

Leaderboard


Popular Content

Showing content with the highest reputation on 12/18/17 in all areas

  1. 1 point
    first issue. Change this: HPExport void plugin_init(void) to HPExport void plugin_init(void) { Change: addHookPre(clif, clif_parse_BankDeposit, clif_parse_BankDeposit_pre); to addHookPre(clif, pBankDeposit, clif_parse_BankDeposit_pre); Also you may not change make file. For build plugin need run: make plugin.pluginname Example for your plugin: make plugin.rodex-bank-npc
  2. 1 point
    no, need copy only extrac condition check. And if condition true, just before return, call hookStop(). This call will prevent calling default function and any post hooks. I will show example only with pre hook function, without registration code. void clif_parse_BankDepositPre(int *fdPtr, struct map_session_data **sdPtr) { int fd = *fdPtr; struct map_session_data *sd = *sdPtr; if ((pc_cant_act2(sd)) || (sd->state.vending) || (sd->npc_id) || (pc_istrading(sd)) || (sd->chat_id != 0)) { clif->messagecolor_self(fd, 0xFF0000, "You are not able to deposit while acting."); hookStop(); return; } }
  3. 1 point
    Adel

    Adel's Sprite Showcase

    Christmas Sprites
  4. 1 point
    Temtaime

    New life for RO

    Hi guys ! Beta v0.3.0 is here ! Key feature is support of npc shops, yay ! More info http://aesir.perfontain.ru/forum/topic/15-beta-v030/
  5. 1 point
    Temtaime

    New life for RO

    Beta v0.2.2 is here ! Kafra storage now working More info: http://aesir.perfontain.ru/forum/topic/14-beta-v022/ Support Æsir on Patreon by giving me for a coffee, more coffees, faster releases https://www.patreon.com/temtaime
  6. 1 point
    Temtaime

    New life for RO

    Sorry for such a delay, was too busy, but now a new version is released ! Key features: chat battle mode support, skill bar with working hotkeys! http://aesir.perfontain.ru/forum/topic/13-beta-v021/
  7. 1 point
    Temtaime

    New life for RO

    Hi all !A new beta is released !Get it there : http://aesir.perfontain.ru/forum/index.php?/topic/10-..Key changes include : ground skill effects and finally damage numbers.
  8. 1 point
    Temtaime

    New life for RO

    Thanks for your support, guys ! Winter effects are coming
  9. 1 point
    Temtaime

    New life for RO

    That's for your concepts, i will think about it.
  10. 1 point
    Temtaime

    New life for RO

    There's a new release, hey ! http://aesir.perfontain.ru/forum/index.php?/topic/8-beta-v011 Now UTF8 is default charset, so it can supports 583 different languages and other unicode symbols ! Also i am making test server, so everyone will be able to connect and test Æsir with it.
  11. 1 point
    Temtaime

    New life for RO

    @raPalooza~ yes, vanilla stuff first, but currently there's for example no some UI elements, and there's no difference in the difficulty to make them as original or as something brand new
  12. 1 point
    Temtaime

    New life for RO

    Hello !I want to remake the interface, so is there someone who can draw and is interested in it ? We can make brand new, better interface.Write me.
  13. 1 point
    Temtaime

    New life for RO

    Hello guys ! I'm sorry for such a delay, but i have some troubles IRL, and while i'm the only one who develops this client, there was no news. Æsir made a big step, many basic features are now accessible. It's not so much comparing with korean client, but it's a good start. With time, features will multiply. You can download and try it right here.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.