Jump to content

solid2005

Members
  • Posts

    145
  • Joined

  • Last visited

Everything posted by solid2005

  1. why i get repeated on installation page? Im using Mysql 6.0.11 alpha and apache.
  2. /////////////////////////////////////////////////////////////////////////////////// // Custom script for Item drops on player's death // -------------------------------------------------------------------------------- // Created by Brian ([email protected]) // for original use on eAthena Stable 12623 /////////////////////////////////////////////////////////////////////////////////// - script DeathHandle -1,{ OnPCDieEvent: //Set this variable to pass on to the next script set $plrdead$, strcharinfo(0); //Get map info getmapxy(@mapname$,@mapx,@mapy,0); //Remove all cards and unequip everything //Ideally, we wouldn't do this, however there's no good way to drop //an item that has cards compounded onto it. A bit inconvienant, but //it works. for (set @i,0; @i < 10; set @i,@i+1) { successremovecards @i; } nude; //Figure out how many items to take getinventorylist; //Change "/3" to reflect the amount of items to drop //1 = 100%, 2 = 50%, 3 = 33%, 4= 25%, etc. set $@drops,(@inventorylist_count*(100/100)); //Let's not make it easy for players to dup. if(@inventorylist_count==0) goto ENDPOS; //This is the loop that goes through the inventory dropping items for(set $@iterations,0; $@iterations < $@drops; set $@iterations,$@iterations+1) { //Update inventory variables getinventorylist; //Randomly choose an item in the inventory array set $@randselect, rand(0,@inventorylist_count); //Drop the item, on the ground, at the location you died. makeitem @inventorylist_id[$@randselect],@inventorylist_amount[$@randselect],@mapname$,@mapx,@mapy; //Take the item out of your inventory. delitem @inventorylist_id[$@randselect],@inventorylist_amount[$@randselect]; } ENDPOS: end; } is there have new idea for this script to not abuse resu kill? to avoid dupe.
  3. wow thanks. i didn't notice that luafiles514.
  4. look at the wing. when i equip not show wing on the char on 2011 client it can be view.
  5. How can i fix this visual bug for customize item?
  6. Did you get visual bug from custom item?
  7. solid2005

    [NPC]EXP

    how to do npc time example every 5 mins all player on prontera will get 10k exp and job exp or 5k.
  8. capatcha Input error: k: Format of site key was invalid
  9. prontera,137,148,0 script test 910,{ atcommand "@kick "+ strcharinfo(0); } 100% crashing the map server. using this script NPC Kick.
  10. Error 1 error LNK2019: unresolved external symbol _achievement_update_explore referenced in function _clif_parse_LoadEndAck clif.obj map-server_sql Error 2 error LNK2019: unresolved external symbol _do_final_achievement referenced in function _do_final map.obj map-server_sql Error 3 error LNK2019: unresolved external symbol _do_init_achievement referenced in function _do_init map.obj map-server_sql Error 4 error LNK2019: unresolved external symbol _achievement_update_mob referenced in function _mob_dead mob.obj map-server_sql Error 5 error LNK2019: unresolved external symbol _achievement_loadTracker referenced in function _pc_authok pc.obj map-server_sql Error 6 error LNK2019: unresolved external symbol _achievement_update_itemfind referenced in function _pc_additem pc.obj map-server_sql Error 7 error LNK2019: unresolved external symbol _achievement_update_itemuse referenced in function _pc_useitem pc.obj map-server_sql Error 8 error LNK2019: unresolved external symbol _achievement_update_quest referenced in function _quest_update_status quest.obj map-server_sql Error 9 error LNK2019: unresolved external symbol _achievement_searchTrackerIndex referenced in function _buildin_getachievementinfo script.obj map-server_sql Error 10 error LNK2019: unresolved external symbol _achievement_exists referenced in function _buildin_getachievementinfo script.obj map-server_sql Error 11 error LNK2019: unresolved external symbol _achievement_achieve referenced in function _buildin_achieve script.obj map-server_sql Error 12 fatal error LNK1120: 11 unresolved externals ..map-server_sql.exe map-server_sql Is there have a solution?
  11. Rathena not compatible. if( (flag = pc_additem(sd, &it, 1)) ) { clif_additem(sd, 0, 0, flag); return 1; } clif_rental_time(sd->fd, nameid, seconds); pc_inventory_rental_add(sd, seconds); if( log_config.enable_logs&LOG_SCRIPT_TRANSACTIONS ) log_pick_pc(sd, "N", nameid, 1, NULL); return 0;
  12. example i rent a knife with +10
  13. nothing happen it's just reset to default.
  14. I download Rathena Client when i run it, my screen was too small like size 100x100. how to fix it?
×
×
  • Create New...