Hakuryuu
Members-
Content Count
20 -
Joined
-
Last visited
About Hakuryuu
-
Rank
Member
Profile Information
-
Gender
Not Telling
-
Github
samers1
-
Emulator
Hercules
-
Hakuryuu reacted to a post in a topic: New Improved 3RD JOB Sprites.
-
Haziel?
-
Haziel released a version of actual released sprites with compatible palletes, but yes, maybe rename the 3 oficial paterns As novas sprites do Ranger já saiu?
-
Where I can edit the start weight?
-
Hakuryuu reacted to an answer to a question: Desactive Item Compare
-
Hakuryuu reacted to an answer to a question: Desactive Item Compare
-
Don't worked. the error does not appear @edit Worked! Thanks Evil.
-
which files should I take the kro?
-
How i can remove that option in my hexed? option checked red in inventory. i want remove, because that option it is giving error in my hexed.
-
Add Increase Headgear ViewID in Hexed Diffed
Hakuryuu replied to Hakuryuu's question in Client-Side Support
Thanks! -
Hakuryuu reacted to an answer to a question: Add Increase Headgear ViewID in Hexed Diffed
-
How i can add this settings in my hexed diffed? Increase Headgear ViewID - 4000 I have done many manual changes to my hexed and would not want to do another. Does anyone know how to do this? I use hexed 2013-08-07
-
implicit declaration of function ‘itemdb_searchrandomid’
Hakuryuu replied to Hakuryuu's question in Source Support
error: script.c: In function ‘buildin_getstorageitem’:script.c:17656: warning: passing argument 1 of ‘itemdb->searchrandomid’ makes pointer from integer without a castscript.c:17656: note: expected ‘struct item_group *’ but argument is of type ‘int’ -
..... problem this command BUILDIN(failedrefitemR) // by jakeRed{ int i=-1,num,ep,ref; TBL_PC *sd; num = script_getnum(st,2); // Equip Slot ref = script_getnum(st,3); // Refine Points Lost sd = script->rid2sd(st); if( sd == NULL ) return 0; if( num > 0 && num <= ARRAYLENGTH(script->equip) ) i = pc->checkequip(sd,script->equip[num-1]); if( i >= 0 ) { short announce_refine[] = { 7, 9, 8, 7, 5 }; ep = sd->status.inventory[i].equip; //Logs items, got from (N)PC scripts [Lupus] log->pick_pc(sd, LOG_TYPE_SCRIPT, -1, &sd->status.inventory[i]); if( battle_config.channel_announces&4 && server_channel[CHN_VENDING] && sd->inventory_data[i]->wlv >= 0 && sd->inventory_data[i]->wlv <= 4 && sd->status.inventory[i].refine >= announce_refine[sd->inventory_data[i]->wlv] ) { // Announces Refines to Chat char chat_announce[256]; sprintf(chat_announce, msg_txt(NULL,704), server_channel[CHN_VENDING]->name, sd->status.name, sd->status.inventory[i].refine, sd->inventory_data[i]->jname, sd->inventory_data[i]->slot,(sd->status.inventory[i].refine - ref)); clif_channel_message(server_channel[CHN_VENDING], chat_announce, 1); } ref = min(ref,sd->status.inventory[i].refine); // To avoid negative Refine sd->status.inventory[i].refine = sd->status.inventory[i].refine - ref; pc->unequipitem(sd,i,2); // status calc will happen in pc_equipitem() below clif->refine(sd->fd,0,i,sd->status.inventory[i].refine); clif->delitem(sd,i,1,3); log_pick_pc(sd, LOG_TYPE_SCRIPT, 1, &sd->status.inventory[i]); clif->additem(sd,i,1,0); pc->equipitem(sd,i,ep); clif->misceffect(&sd->bl,2); } return 0;} Error: script.c: In function ‘buildin_failedrefitemR’:script.c:8718: warning: implicit declaration of function ‘log_pick_pc’script.c:8720: error: ‘struct Battle_Config’ has no member named ‘channel_announces’script.c:8720: error: ‘server_channel’ undeclared (first use in this function)script.c:8720: error: (Each undeclared identifier is reported only oncescript.c:8720: error: for each function it appears in.)script.c:8720: error: ‘CHN_VENDING’ undeclared (first use in this function)script.c:8723:43: error: macro "msg_txt" passed 2 arguments, but takes just 1script.c:8723: error: ‘msg_txt’ undeclared (first use in this function)script.c:8724: warning: implicit declaration of function ‘clif_channel_message’ Please help..
-
atcommand.c: In function ‘atcommand_helper’:atcommand.c:3123: error: too many arguments to function ‘pcg->reload’atcommand.c:3130: error: too many arguments to function ‘pcg->reload’atcommand.c:3113: warning: unused variable ‘new_group’
-
Command: ACMD(helper){ int new_group = 0; nullpo_retr(-1, sd); if (!pc_group_exists(3) || !pc_group_exists(4)) { clif->message(fd, msg_fd(fd,1227)); // Specified group does not exist. return -1; } if ( sd->group_id == 4) { sd->group_id = 3; clif->message(fd,"Mensagens do sistema Helper ativo."); pc_group_pc_load(sd);/* update cache */ return 0; } if ( sd->group_id == 3) { sd->group_id = 4; clif->message(fd,"Mensagens do sistema Helper desativo."); pc_group_pc_load(sd);/* update cache */ return 0; } return 0;} Error: atcommand.c: In function ‘atcommand_helper’:atcommand.c:3117: warning: implicit declaration of function ‘pc_group_exists’atcommand.c:3124: warning: implicit declaration of function ‘pc_group_pc_load’atcommand.c:3113: warning: unused variable ‘new_group’ Please help...