Jump to content

VladimirCastro

Members
  • Posts

    298
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by VladimirCastro

  1. i just wanna ask because ive contacted him via facebook and im not sure if it is really him maybe or i know some of you know him . is this his real paypal email? [email protected]
  2. kasi gusto ko po sana gawin ung frost joke ng clown pag mag ka party kayo di ka maffrost ung enemy lang outside your party pano po un?
  3. just wanna ask for this script instant 100% +10 refine for any items. require item is 40pcs pod per 1 pc of +10
  4. i dont know if im in the right section but i want to disable frost joke effect for party member only enemy will get frost not party member
  5. can i use this for eathena without error?
  6. i always get this when i go main town or prontera
  7. dunno if im in the right section but. when i use stargladiator and use buff like warmth etc.. and prepare axe kick etc.. after using that i cant us bwing?.
  8. i want only 1 npc with 1 quest only
  9. i want a quest script that something like u will have to kill 150 dokebi to receive 1 item
  10. he didnt get my tcg its not working
  11. i tried to add but it give me sprite error
  12. the items is like 20pcs tcg how to add the count of item
  13. dunno i tried it still not counting
  14. pub is not showing im using eathena
  15. how can i require an item before using the npc? // -------------------------------------------------------------------------- // -------------------------------------------------------------------------- // eAmod Project - Scripts // -------------------------------------------------------------------------- // Script Name : Headgear to Costume converter // -------------------------------------------------------------------------- // Description : // Allows a user to convert the equipped headgear (on Top, Mid or Low) into a // costume item. It will remove any card and refine of the Item. // -------------------------------------------------------------------------- - script Costume-IT -1,{ mes "[Costume-IT]"; mes "Hello and welcome to the Costume-IT service."; mes "Here you can convert your headgears into a Costume Headgear."; next; mes "[Costume-IT]"; mes "Please, select what to convert."; mes "Remember, cards and refine will be removed."; next; setarray .@Position$[1],"Top","Mid","Low"; setarray .@Position[1], 1, 9, 10; set .@Menu$,""; for( set .@i, 1; .@i < 4; set .@i, .@i + 1 ) { if( getequipisequiped(.@Position[.@i]) ) set .@Menu$, .@Menu$ + .@Position$[.@i] + "-" + "[" + getequipname(.@Position[.@i]) + "]"; set .@Menu$, .@Menu$ + ":"; } set .@Part, .@Position[ select(.@Menu$) ]; if( !getequipisequiped(.@Part) ) { mes "[Costume-IT]"; mes "Your not wearing anything there..."; close; } mes "[Costume-IT]"; mes "You want to Costume your " + getitemname(getequipid(.@Part)) + "?"; next; if( select("Yes, proceed:No, I am sorry.") == 2 ) { mes "[Costume-IT]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } costume .@Part; // Convert the Headgear mes "[Costume-IT]"; mes "Done, enjoy your costume headgear."; close; } // -------------------------------------------------------------------------- // Use duplicates to put your npc on different cities // -------------------------------------------------------------------------- prontera,140,168,4 duplicate(Costume-IT) Costume-IT#1 864
  16. how can i make permanent channel everytime i logout channel is gone
  17. heres my script //===== rAthena Script ======================================= //= Guild Prize Giveaway //===== By: ================================================== //= AnnieRuru / Mysterious / Joseph //===== Current Version: ===================================== //= 1.7 //===== Compatible With: ===================================== //= rAthena SVN //===== Description: ========================================= //= Rewards guild masters of castle owners after each //= War of Emperium session. //===== Additional Comments: ================================= //= v1.0 - Intitial Re-release [Mysterious] //= v1.1 - Language structures [Mysterious] //= v1.2 - Added divisions [Mysterious] //= v1.3 - Added proper information [Mysterious] //= v1.4 - Optimized! [Euphy] //= v1.5 - Little bit of cleaning [Mysterious] //= v1.6 - Fixed Agit on/off corruption. [Joseph] //= v1.7 - Fixed overweight issues [Joseph] //============================================================ prontera,163,166,4 script Castle Rewards 871,{ function GetCastle; set .@reward,671,1; //<Item_ID>,<Amount>{,...} set .@n$,"["+strnpcinfo(0)+"]"; mes "Your guild [^0000FF"+getguildname(getcharid(2))+"^000000] has conquered:"; for(set .@i,0;.@i<getarraysize(.Castles$);set .@i,.@i+1) if (getcastledata(.Castles$[.@i],1) == getcharid(2)) { mes " > "+getcastlename(.Castles$[.@i])+""; set .@c,1; setarray .@uh$[getarraysize(.@uh$)],.Castles$[.@i],(1<<.@i); } if (!.@c) { mes " > No castles."; close; } next; if (select(((getguildmasterid(getcharid(2))==getcharid(0))?((agitcheck()||agitcheck2())?"":"Redeem Reward"):"")+":Close")==2) close; mes .@n$; mes "Please select a castle to redeem your guild reward."; for(set .@i,0;.@i<getarraysize(.@uh$);set .@i,.@i+2) set .@m$,.@m$+($castle_reward&(1<<GetCastle(atoi(.@uh$[.@i+1])))?"^0000FF":"^FF0000")+getcastlename(.@uh$[.@i])+"^000000:"; next; set .@m,select(.@m$)-1; if ($castle_reward&(1<<GetCastle(atoi(.@uh$[.@m*2+1])))) { mes .@n$; mes "Here's your reward for conquering ^0000FF"+getcastlename(.@uh$[.@m*2])+"^000000."; mes "You should divide these among your guild members."; for(set .@i,0;.@i<getarraysize(.@reward);set .@i,.@i+1) if (!checkweight(.@reward[.@i],.@reward[.@i+1])) { mes " "; mes "^FF0000Overweight!^000000"; close; } for(set .@i,0;.@i<getarraysize(.@reward);set .@i,.@i+1) getitem .@reward[.@i],.@reward[.@i+1]; set $castle_reward,$castle_reward^(1<<GetCastle(atoi(.@uh$[.@m*2+1]))); close; } mes .@n$; mes "It seems like you've redeemed the reward."; close; function GetCastle { for(set .@j,0;.@j<getarraysize(.Castles$);set .@j,.@j+1) { set .@c1,.@c2|(1<<.@j); if (getarg(0)==.@c1) return .@j; } return -1; } OnAgitEnd: OnAgitEnd2: for(set .@i,0;.@i<getarraysize($WOE_CONTROL);set .@i,.@i+4) if (gettime(4)==$WOE_CONTROL[.@i] && gettime(3)==$WOE_CONTROL[.@i+2] && $castle_reward&(1<<GetCastle($WOE_CONTROL[.@i+3])) == 0) set $castle_reward,$castle_reward|(1<<GetCastle($WOE_CONTROL[.@i+3])); end; OnInit: setarray .Castles$, "prtg_cas01","prtg_cas02","prtg_cas03","prtg_cas04","prtg_cas05", "payg_cas01","payg_cas02","payg_cas03","payg_cas04","payg_cas05", "gefg_cas01","gefg_cas02","gefg_cas03","gefg_cas04","gefg_cas05", "aldeg_cas01","aldeg_cas02","aldeg_cas03","aldeg_cas04","aldeg_cas05", "arug_cas01","arug_cas02","arug_cas03","arug_cas04","arug_cas05", "schg_cas01","schg_cas02","schg_cas03","schg_cas04","schg_cas05"; end; }
  18. dont know whats wrong but when i try to compound thara in my shield it can be also compund to these weapons check the script below 30004,Skyfire_Hawk_Bow,Skyfire_Hawk_Bow,5,20,,1200,180,,5,4,0x000A0808,7,2,34,4,48,1,11,{ bonus bDex,10;bonus bUnbreakableWeapon,0; if(getrefine()>8) { bonus2 bAddRace,RC_Boss,10; } },{},{} 30015,Vash_reloder,Vash_Revolver,5,48000,,500,70,,7,4,0x01000000,7,2,34,2,55,1,17,{ bonus bDex,10; if(getrefine()>8) { bonus2 bAddRace,RC_DemiHuman,10; } },{},{}
  19. first of all its not vice versa script i want script that will change my ticket to cashpoint. again not vice versa. just an npc that will change ticket to cashpoint
×
×
  • Create New...