Search results

  1. astralprojection

    Trigger OnMobDrop Event

    Is there a way to trigger on ion mob drop a specific item? - scrip    itemdrop   -1,{ end; OnMobDrop:      If(nameid = 601)      dispbottom "Monster dropped ^+getitemname(601):      end; }
  2. astralprojection

    Pick item from array

    - script test -1,{ setarray(.@newarray, <pick 10 items from .@mission[1]); mes("Your missions are;"); mes("Mission 1: "+.@newarray[1]; mes("Mission 2: "+.@newarray[2]; mes("Mission 3: "+.@newarray[3]; mes("Mission 4: "+.@newarray[4]; mes("Mission 5: "+.@newarray[5]; mes("Mission 6...
  3. astralprojection

    How to enclose qoutation to string variable

    -<tab>script<tab>test#dumb<tab>HIDDEN_NPC,1{ end; OnWarp: input .@playername$; atcommand "#warp "+.@playername$+" "+.arena_map$+" 22 50"; end; OnInit: bindatcmd("warpthisdumbplayer","test::OnWarp",0,99); .arena_map$ = "guild_vs2"; end; } I was hoping to do (...
  4. astralprojection

    Questinfo / SetQuestInfo

    Im having issue with this: OnInit: questinfo(QTYPE_QUEST,1); setquestinfo(QINFO_QUEST, 33333, 0); end; npc should show bubble when player don't have that QuestID 33333. Also can it process multiple validation? like OnInit: questinfo(QTYPE_QUEST,1); setquestinfo(QINFO_QUEST, 33333, 0)...
  5. astralprojection

    Check Job Level

    I wish to check joblevel of the invoking player . how to code it?   if( sd-> "joblevel" < 40) return false;
  6. astralprojection

    [Release] ExtendedBG for Hercules (with eAmod BG modes)

    Can you check on this @Dastgir.  I was using the latest Herc updated today.
  7. astralprojection

    [Release] ExtendedBG for Hercules (with eAmod BG modes)

    As I tested on CTF, my original guild member was also included in my BG guild.  
  8. astralprojection

    kRO unpacked clients releases

    I'm testing 2018-04-04bRagexe  and set deletion delay to 1sec.  But char selection says 6 month 7 day 0 hour 30 min 57 sec.  It did turn blue (ready for deletion) after a sec. Is there any fix on that message
  9. astralprojection

    how to snprintf (new line)

    snprintf(atcmd_output, CHAT_SIZE_MAX, "Price: %u | Amount: %d | Map: %s (%d,%d) | Shop: %s <how to show the next data in newline?> +%d %d[%d][%d][%d][%d]" ,pl_sd->vending[j].value ,pl_sd->vending[j].amount ,map->list[pl_sd->bl.m].name...
  10. astralprojection

    Map Zone DB > Suggestions/Improvement

    I hope this will be possible.  I have a zone where I only want to allow specific items .  On the current code, what I did is list ALL disabled item and got around 100+ lines on the list.  Is there a better way to do? {     name: "Test"     disabled_skills: {         BS_GREED: "PLAYER"   ...
  11. astralprojection

    How to convert pet_db2.txt

    can someone show me how to use that petdbconvert.py?  thanks.
  12. astralprojection

    Sanasol's WoE Statistics

    I'm getting issue after I update my Hercules. I hope some could point me on this piece of code This is the original code  + /* [Sanasol] Current WoE Statistics */ + if (SQL_ERROR == SqlStmt_Prepare(stmt, "SELECT `top_damage`, `damage_done`, `damage_received`, `emperium_damage`...
  13. astralprojection

    How to filter getinventorylist

    getinventorylist; .@i = 0; while ( .@i < @inventorylist_count ) { /* Filter only items that is not bound */ if (!@inventorylist_bound[.@i]){ .@itemname$ = callfunc( "getitemname2", @inventorylist_id[.@i], @inventorylist_identify[.@i], @inventorylist_refine[.@i]...
  14. astralprojection

    itemmoveinfov5.txt

    Is there any easy way to generate itemmoveinfov5.txt ? .  Thanks guys.
  15. astralprojection

    hateffect not supported?

    Script: <" { hateffect HAT_EF_BLOSSOM_FLUTTERING,true; },{},{ hateffect HAT_EF_BLOSSOM_FLUTTERING,false; } "> *hateffect(<Hat Effect ID>,<State>); This will set a Hat Effect onto the player. The state field allows you to enable (true) or disable (false) the effect on...
  16. astralprojection

    Send Old Mail To RoDex

    I was trying to figure out how to send those pending message from old mail to RoDex since newer client don't open the old mail already.  I made some script to do this but i need clarification on the query. table `mail` has column `status`.  What is the meaning of this values? 0 = 1 = 2 =...
  17. astralprojection

    Check @sold_nameid

    need help on this, what i  need to accomplish here is player click npc and open sell window.  Player drag items to window and sell.  If item sold matches the given array, they will get the predefined  item from the array.  I can pay for this to accomplish, just pm me. - shop dyn_shop1...
  18. astralprojection

    [Paid] Looking WOE Recorder

    1. must have paypal account 2. must be able to revord/compile/edit skillfully recorder video of WOE. 3. must be available on Sat & Sun 9pm - 10pm Singapore Time. pls send me message.
  19. astralprojection

    Cash Transaction Log (pick_logs)

    I hope to get this added, it is a very important to track and monitor cash movement of players case LOG_TYPE_REFINE: return '2'; // Refine case LOG_TYPE_OTHER: return 'X'; // Other case LOG_TYPE_CASH: return '$'; // Cash Points }
  20. astralprojection

    Request> OnCashEvent

    What does it do? - It triggers the npc when you spend or receive #CASHPOINTS.   I thought it would be useful on making script like Cash Spending Event or track cash movement of the player.
Back
Top