Jump to content

Mobius

Members
  • Posts

    5
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Liberty

Recent Profile Visitors

1123 profile views

Mobius's Achievements

Poring

Poring (1/15)

0

Reputation

  1. Hello to you all. I come to you today for a very mysterious problem for which I have so far found no solution or even a small track. I use a version of Emulator Rathena 17257 paired with a RagexeRE client 2012-04-18 The client works properly for everything except one thing, the weapons do not appear when you attack and the animation is that the attack in melee. The Client returns any error or other spr and I make no change in basic weapons or implanted custom weapon. So here if someone has already encountered this kind of problem or solution I'd be grateful to enlighten me, Thank you all.
  2. create an Archive *zip or rar* and upload it in your dedicated and provides a link to download via a website or forum with tutorial for his installation. and produces an update to change the client files
  3. Hi. I explain my problem, I try to add a custom quest using * a Daily Quest * on my server (Rathena svn 17203 trunk). Side emulator everything is good and edited db/quest_db.txt 20000,0,0,0,0,0,0,0,"questname" The problem is client side If I simply edit the file questid2display.txt it is impossible to set images and other options now available if I followed all new Client using lua to define the quests but I have not found a tutorial explaining how they work so if someone could help me would be really nice
  4. Hi all, Let me explain quickly : my server has 76 guild rank(one by a guild member)I would ensure that only the first 20 positions of the guild can access the guildstorage,I think you have found the place or I must do my modification but I have no idea how.. Thatif someone could give me the correct code to do what I wishI would be very grateful. int storage_guild_storageopen(struct map_session_data* sd) { struct guild_storage *gstor; nullpo_ret(sd); if(sd->status.guild_id <= 0) return 2; if(sd->state.storage_flag) return 1; //Can't open both storages at a time. if( !pc_can_give_items(pc_isGM(sd)) ) { //check is this GM level can open guild storage and store items [Lupus] clif_displaymessage(sd->fd, msg_txt(246)); return 1; } if((gstor = guild2storage2(sd->status.guild_id)) == NULL) { intif_request_guild_storage(sd->status.account_id,sd->status.guild_id); return 0; } if(gstor->storage_status) return 1; gstor->storage_status = 1; sd->state.storage_flag = 2; storage_sortitem(gstor->items, ARRAYLENGTH(gstor->items)); clif_storagelist(sd, gstor->items, ARRAYLENGTH(gstor->items)); clif_updatestorageamount(sd, gstor->storage_amount, MAX_GUILD_STORAGE); return 0; }
×
×
  • Create New...