Jump to content

Emistry

Forum Moderator
  • Posts

    9,746
  • Joined

  • Days Won

    305

Community Answers

  1. Emistry's post in Unique and Fun PVP Room. was marked as the answer   
    well....i was thinking...
    why not just make a simple warper ??
    for @duel ...
    why are we need to use @duel command when we can just simply make a 1vs1 with a simple map users checking before warp ?
    for deathmatch
    why are we need to use @pvpon where the map you request is already a "PVP" Map ??
    for GvG
    just simply put a GvG mapflag on that map will do what you want...

    for no command usage

    mapname mapflag nocommand
    for Potion

    item_equip.txt
    it should be working fine...but when thinking of there is alot of Potion .... not really sure there is a good way to handle this.
    or you use an array to store the potion ID and check before the player get warped.
    for link ...

    skill_nocast.txt
    then add the specific mapflag to the map
    and add a OnPCLoadMapEvent to remvove Link Buff if there is any.
  2. Emistry's post in Request Custom Job Changer was marked as the answer   
    try this

    jobchange ( !Sex )?4075:4076;
  3. Emistry's post in Request MVP Rank include Reset Rank MVP was marked as the answer   
    can....but it you dunno how to do it...then better use another npc to remove it ...
    otherwise later if you do it wrongly...your script might ruined.
    and since the data is saved using global variable ... you can use another npc to delete it easily...
    or you can add this part into your original script
    http://upaste.me/4494326b9903025
    then go in game and pm your npc.

    npc:NPCNAME
  4. Emistry's post in Map Announcer was marked as the answer   
    try this ?
    http://upaste.me/d40332109797738
    for the loadevent stuff..you have to put every map for it.
    but if i was right...you can just download the maplist that has loadevent mapflag with it in myzster script...
    not sure he still have this in his topic..
    or you can just edit your src to ensure every single map also run with loadevent mapflag
  5. Emistry's post in script was marked as the answer   
    what about using

    @request
  6. Emistry's post in PVP Ladder was marked as the answer   
    http://rathena.org/board/topic/58222-ghosts-scripts-latest-ghosts-pvp-system-v13/
  7. Emistry's post in In Game Protect Password GM was marked as the answer   
    try this
    http://pastebin.com/raw.php?i=3YRE82tq
    added moving blocking.
    character gm wont be able to move if he try to bypass this .
  8. Emistry's post in Kick Player From Account ID was marked as the answer   
    try this
    http://upaste.me/2825279ffa0d9be
  9. Emistry's post in YGG Room and Ygg ticket was marked as the answer   
    try this
    http://upaste.me/1d10278cd3db1e7
  10. Emistry's post in [Solve]Request scriptor help adjust if can, tq was marked as the answer   
    erm..maybe you wanna give this a try for your 1st request ?
    http://upaste.me/d62f2768f8b9123
    edit the settings at your own.
    second..
    in your script already got this....?

    function script F_VaTele { mes "[Kafra Employee]"; mes "I can warp you to Mana Train Station."; next; switch(select("Yes I want to go now:Cancel")) { case 1: //mes "Let me know the destination code."; cutin "", 255; close; warp "velika_town",76,102; break; case 2: cutin "", 255; close; break; } end; }
  11. Emistry's post in Desguise Event was marked as the answer   
    use search engine...there are several disguise event script exist in forum..
    or you can try mine also..
    Monter Wiki Event
    http://rathena.org/board/topic/53320-%E3%80%90-emistry-%C2%A9-2012-%E3%80%91e-scripts-collection/
  12. Emistry's post in Request Script . . Help Me.. was marked as the answer   
    case 1: callsub OnBuyItem,50,"SZeny",501,1,"announce"; case 2: callsub OnBuyItem,502,1,0,"SZeny",502,1; case 3: callsub OnBuyItem,502,1,1000,"Zeny",504,1,501,1; case 4: callsub OnBuyItem,923,20,1000,"SZeny",2284,1,501,1,"announce"; case 5:....... case 6: ......
    the link to the original topic already giving you the guide on how to add item..
  13. Emistry's post in Homunculus evolver was marked as the answer   
    you can try this

    prontera,155,181,5 script Sample 757,{ if( !gethominfo(0) ){ mes "You need a Homunculus with you."; }else{ mes "Your Homunculus has Evolved."; homevolution; } close; }
  14. Emistry's post in Script Request [ Kafra Shop ] was marked as the answer   
    you can try this if you want..
    http://rathena.org/board/topic/53320-%E3%80%90-emistry-%C2%A9-2012-%E3%80%91e-scripts-collection/page__st__40__p__70657#entry70657
  15. Emistry's post in delay party vs party was marked as the answer   
    try this
    below

    sleep2 2000; set .Created,0; mapwarp .Map$,"prontera",155,181;
    add this

    hideonnpc strnpcinfo(0); sleep2 ( 10 * 3600000 ); hideoffnpc strnpcinfo(0);
    and what nameless2you said is.....WRAP YOUR CODE using CODEBOX.. ...
    it is way too long to be read by a members here......
    and nameless2you there is a report button for you ~
  16. Emistry's post in R> Auto announce every 10 mins. was marked as the answer   
    Random News Announce [ Version 2 ]
    Changelog :
    Scripts : View ♥ Download
  17. Emistry's post in Show Emperium Breaker was marked as the answer   
    try this
    http://pastebin.com/raw.php?i=uyq7p1in
  18. Emistry's post in custom shop with cash point was marked as the answer   
    https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/merchants/cash_trader.txt
  19. Emistry's post in Request Refine Custom was marked as the answer   
    edit here
    https://rathena.svn....ants/refine.txt

    //===================================================================================== // Weapon/Armor Refiners //===================================================================================== callfunc "refinemain","Hollgrehenn",0; callfunc "refinemain","Aragham",0; callfunc "refinemain","Antonio",0; callfunc "refinemain","Fredrik",0; callfunc "refinemain","Lambert",0; callfunc "refinemain","Manthasman Pruhag",0; callfunc "refinemain","Fulerr",0;
    edit the 0 into 1
  20. Emistry's post in Auto Warper Npc was marked as the answer   
    how about try like this..
    http://pastebin.com/raw.php?i=thVB75He
  21. Emistry's post in Fakename Title? was marked as the answer   
    not sure work fine or not...try this..
    i just made from scratch..
    http://pastebin.com/raw.php?i=fFA6pKgC
  22. Emistry's post in modified gold room was marked as the answer   
    i think you can try this
    http://rathena.org/board/topic/53320-%e3%80%90-emistry-%c2%a9-2012-%e3%80%91e-scripts-collection/page__view__findpost__p__57588
  23. Emistry's post in Just a little Request. was marked as the answer   
    [ Pastebin ] Monster Drop Extra Items when Killed
    tr0n script will stop the script if the 1st monster ID in the list doesnt match with the killedrid
    instead of "end" he can ty change it to "continue" to loop for the rest ID
    anyway...
    there is a easier way...but required a src mod..
    cant remember what topic....but i just remember the topic is about mvp announcer..
    and...you can find that src mod in the svn changelog..
  24. Emistry's post in flower event edit script was marked as the answer   
    erm i think you can try this...
    i havent update this in my topic in script release section..
    http://pastebin.com/raw.php?i=qwxjqcRL
    the new feature stuff..i will explain it in detail later on when in my topic when i have time to write it...
    basically just added spam prevention so that player cant spam chat to answer the game..
    added auto game start..edit the time at your own..
    added item prize per round...and ya...you can edit how many round each time the game start
    and no need to keep creating the same topic when there is already 1...
    http://rathena.org/board/topic/61312-flowerevent-modification/
  25. Emistry's post in request refine was marked as the answer   
    check my topic for Refine Function

    Script Release > Script Collection > Emistry Script > Refine Function
    it is a 100% Success Rate Refiner Script
×
×
  • Create New...

Important Information

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