Jump to content

chromus28

Members
  • Posts

    263
  • Joined

  • Last visited

Everything posted by chromus28

  1. yes and i foll Yes i followed their guide. YGG and other healing items are fine and its now working on pvp and woe but when to an equipment..it is just taking off when you enter in that map then you can equip it again with the effects
  2. anybody know what script should be in this effect? Enables permanent Soul Link as long as it is equipped. Removed when this item is unequipped.
  3. what kind of script ?? T_T What kind of script sir??
  4. yuno,209,310,6 script Tapestry 111,{ mes "[Riot Entrance]"; mes "Please select a private Riot room."; if ( getvariableofnpc(.rentitemid, "MVP Summoner") && getvariableofnpc(.rentitemamount, "MVP Summoner") ) mes "The cost to rent a room for "+ getvariableofnpc(.timeout, "MVP Summoner") +" minutes is "+ getvariableofnpc(.rentitemamount, "MVP Summoner") +" "+ getitemname( getvariableofnpc(.rentitemid, "MVP Summoner") ) +"."; else if ( getvariableofnpc(.rentcost, "MVP Summoner") ) mes "The cost to rent a room for "+ getvariableofnpc(.timeout, "MVP Summoner") +" minutes is "+ callfunc("int__", getvariableofnpc(.rentcost, "MVP Summoner") ) +" zeny."; else mes "You can only use the room for only "+ getvariableofnpc(.timeout, "MVP Summoner") +" minutes."; mes " "; for ( set .@i, 1; .@i <= 8; set .@i, .@i +1 ) { if ( getvariableofnpc(.remaintime[.@i],"MVP Summoner") ) { switch ( .type[.@i] ) { case 1: set .@color$, "^EE8800"; break; case 2: set .@color$, "^70CC11"; break; case 3: set .@color$, "^0000FF"; break; default: set .@color$, "^000000"; } mes "Room #"+ .@i +" = "+ .@color$ + .whoinuse$[.@i] +"^000000"; } } next; set .@room, select("Tier 1 ["+ getmapusers("1@cedi1") +"]", "Tier 2 ["+ getmapusers("1@cedi2") +"]", "Tier 3 ["+ getmapusers("1@cedi3") +"]", "Tier 4 ["+ getmapusers("1@cedi4") +"]"); if ( getvariableofnpc(.remaintime[.@room],"MVP Summoner") ) { if ( .inuseid[.@room] == getcharid(.type[.@room]) ) { if ( getvariableofnpc(.killmonster,"MVP Summoner") && getmapusers("1@cedi_0"+ .@room) == 0 ) killmonsterall "1@cedi_0"+ .@room; warp "1@cedi_0"+ .@room, 0,0; end; } else { mes "[Riot Entrance]"; switch ( .type[.@room] ) { case 1: set .@color$, "^EE8800Party "; break; case 2: set .@color$, "^70CC11Guild "; break; case 3: set .@color$, "^0000FFPlayer "; } mes "This room is reserved for "; mes .@color$ + .whoinuse$[.@room] +"^000000 ."; if ( getgmlevel() < getvariableofnpc(.gmlvlkick,"MVP Summoner") ) { mes "Please select another."; close; } mes " "; mes "Currently there are "+ getmapusers("1@cedi_0"+ .@room) +" players"; mes "in that room."; set .@remaintime, getvariableofnpc(.remaintime[.@room],"MVP Summoner"); mes "It still has "+( .@remaintime /10 )+"mn "+( .@remaintime %10 )+"s left."; set .@nobodycounter, getvariableofnpc(.nobodycounter[.@room],"MVP Summoner"); if ( .@nobodycounter ) mes "And have left empty for "+( .@nobodycounter /10 )+"mn "+( .@nobodycounter %10 )+"s."; mes "Kick them ?"; next; if ( select ( "No:Yes" ) == 1 ) close; set getvariableofnpc(.remaintime[.@room],"MVP Summoner"), -1; mes "[Riot Entrance]"; mes "Room#"+ .@room +" is empty now."; close; } } mes "[Riot Entrance]"; if ( getvariableofnpc(.rentitemid, "MVP Summoner") && getvariableofnpc(.rentitemamount, "MVP Summoner") ) { if ( countitem(getvariableofnpc(.rentitemid, "MVP Summoner")) < getvariableofnpc(.rentitemamount, "MVP Summoner") ) { mes "You don't have enough "+ getitemname( getvariableofnpc(.rentitemid, "MVP Summoner") ) +" to rent a room."; close; } } else if ( getvariableofnpc(.rentcost, "MVP Summoner") ) { if ( zeny < getvariableofnpc(.rentcost, "MVP Summoner") ) { mes "You don't have enough zeny to rent a room."; close; } } mes "You reserve this room for ..."; next; set .@type, select("For my party members" ); if ( getcharid(.@type) == 0 ) { mes "[Riot Entrance]"; mes "You do not own a "+( (.@type == 1)?"Party":"Guild" )+"."; close; } else if ( getvariableofnpc(.rentitemid, "MVP Summoner") && getvariableofnpc(.rentitemamount, "MVP Summoner") ) { if ( countitem(getvariableofnpc(.rentitemid, "MVP Summoner")) < getvariableofnpc(.rentitemamount, "MVP Summoner") ) { mes "You don't have enough "+ getitemname( getvariableofnpc(.rentitemid, "MVP Summoner") ) +" to rent a room."; close; } } else if ( getvariableofnpc(.remaintime[.@room],"MVP Summoner") ) { mes "[Riot Entrance]"; mes "I'm sorry, somebody else has already register this room faster than you."; close; } for ( set .@i, 1; .@i <= 8; set .@i, .@i +1 ) { if ( getvariableofnpc(.remaintime[.@i],"MVP Summoner") && .@type == .type[.@i] && getcharid(.@type) == .inuseid[.@i] ) { mes "[Riot Entrance]"; mes "You already rented Room#"+ .@i +". Use that room instead."; close; } } set .type[.@room], .@type; set .inuseid[.@room], getcharid(.@type); set .whoinuse$[.@room], strcharinfo( (.@type == 3)?0:.@type ); if ( getvariableofnpc(.rentitemid, "MVP Summoner") && getvariableofnpc(.rentitemamount, "MVP Summoner") ) { if ( countitem(getvariableofnpc(.rentitemid, "MVP Summoner")) < getvariableofnpc(.rentitemamount, "MVP Summoner") ) end; delitem getvariableofnpc(.rentitemid, "MVP Summoner"), getvariableofnpc(.rentitemamount, "MVP Summoner"); } else if ( getvariableofnpc(.rentcost, "MVP Summoner") ) { if ( zeny < getvariableofnpc(.rentcost, "MVP Summoner") ) end; set zeny, zeny - getvariableofnpc(.rentcost, "MVP Summoner"); } warp "1@cedi_0"+ .@room, 0,0; killmonsterall "1@cedi_0"+ .@room; donpcevent "MVP Summoner#"+ .@room +"::OnEnterMap"; end; } 1@cedi1,45,54,6 duplicate(MVP Summoner) MVP Summoner#1 116 1@cedi2,45,54,6 duplicate(MVP Summoner) MVP Summoner#2 116 1@cedi3,45,54,6 duplicate(MVP Summoner) MVP Summoner#3 116 1@cedi4,45,54,6 duplicate(MVP Summoner) MVP Summoner#4 116 1@cedi1 mapflag nowarpto 1@cedi1 mapflag nowarpto 1@cedi1 mapflag nowarpto 1@cedi1 mapflag nowarpto 1@cedi1 mapflag nomemo 1@cedi1 mapflag nomemo 1@cedi1 mapflag nomemo 1@cedi1 mapflag nomemo 1@cedi1 mapflag noteleport 1@cedi1 mapflag noteleport 1@cedi1 mapflag noteleport 1@cedi1 mapflag noteleport 1@cedi1 mapflag nosave SavePoint 1@cedi1 mapflag nosave SavePoint 1@cedi1 mapflag nosave SavePoint 1@cedi1 mapflag nosave SavePoint 1@cedi1 mapflag nopenalty 1@cedi1 mapflag nopenalty 1@cedi1 mapflag nopenalty 1@cedi1 mapflag nopenalty 1@cedi2 mapflag nowarpto 1@cedi2 mapflag nowarpto 1@cedi2 mapflag nowarpto 1@cedi2 mapflag nowarpto 1@cedi2 mapflag nomemo 1@cedi2 mapflag nomemo 1@cedi2 mapflag nomemo 1@cedi2 mapflag nomemo 1@cedi2 mapflag noteleport 1@cedi2 mapflag noteleport 1@cedi2 mapflag noteleport 1@cedi2 mapflag noteleport 1@cedi2 mapflag nosave SavePoint 1@cedi2 mapflag nosave SavePoint 1@cedi2 mapflag nosave SavePoint 1@cedi2 mapflag nosave SavePoint 1@cedi2 mapflag nopenalty 1@cedi2 mapflag nopenalty 1@cedi2 mapflag nopenalty 1@cedi2 mapflag nopenalty 1@cedi3 mapflag nowarpto 1@cedi3 mapflag nowarpto 1@cedi3 mapflag nowarpto 1@cedi3 mapflag nowarpto 1@cedi3 mapflag nomemo 1@cedi3 mapflag nomemo 1@cedi3 mapflag nomemo 1@cedi3 mapflag nomemo 1@cedi3 mapflag noteleport 1@cedi3 mapflag noteleport 1@cedi3 mapflag noteleport 1@cedi3 mapflag noteleport 1@cedi3 mapflag nosave SavePoint 1@cedi3 mapflag nosave SavePoint 1@cedi3 mapflag nosave SavePoint 1@cedi3 mapflag nosave SavePoint 1@cedi3 mapflag nopenalty 1@cedi3 mapflag nopenalty 1@cedi3 mapflag nopenalty 1@cedi3 mapflag nopenalty 1@cedi4 mapflag nowarpto 1@cedi4 mapflag nowarpto 1@cedi4 mapflag nowarpto 1@cedi4 mapflag nowarpto 1@cedi4 mapflag nomemo 1@cedi4 mapflag nomemo 1@cedi4 mapflag nomemo 1@cedi4 mapflag nomemo 1@cedi4 mapflag noteleport 1@cedi4 mapflag noteleport 1@cedi4 mapflag noteleport 1@cedi4 mapflag noteleport 1@cedi4 mapflag nosave SavePoint 1@cedi4 mapflag nosave SavePoint 1@cedi4 mapflag nosave SavePoint 1@cedi4 mapflag nosave SavePoint 1@cedi4 mapflag nopenalty 1@cedi4 mapflag nopenalty 1@cedi4 mapflag nopenalty
  5. i tried to put it on noequip.txt the item, when i entered pvp room or woe, it just taking it off but after that i can equip it again.. how can i make this properly?
  6. orden?? i know the drop items and drop card.. i tried the steel or apple on my custom mob drops and there is no error.. but when i putmy custom items i got error T_T
  7. Guys just wanna ask something. I made a custom monster and its fine , then i put an custom card drop and there is no error. But when i put custom item drops i got an error? When the item is dropping ive got an error when im using @item on that item there is no error, just the error is when dropping on monster does anyone can help???????
  8. guys can you give me some guide on adding weapon on produce.txt?? that only whitesmith can make..
  9. is it possible to use cash points in items? i mean once they click the item you will get an cash points what is the script for it?
  10. does anyone know what is the script for the headgear that it can change to other headgear example: you will chat NPC:Ragna (then you will type the name of the headgear)
  11. anyone know how to script to an item like this if they use the item, they can sex change? is there any script for this?
  12. guys anyone knows about what script for this effect? >>When attacking, adds a chance to disable your enemies movement for a short period of time?? bump
  13. mam error script error on npc/rns/main/bot.txt line 16 parse_line: expect command, missing function name or calling undeclared function 11 : OnNPCKillEvent: 12 : if ( rand(100) ) end; // 1% chance to triggering 13 : setoption 0x40, 1; 14 : sc_start sc_berserk, 1000000000, 1; 15 : addtimer 30000, strnpcinfo(0)+"::OnCheat"; * 16 : '.'@respond = gettimetick(2); 17 : mes "if A = "+( .@a = rand(1,10) )+", B = "+( .@b = rand(1,10) ); 18 : setarray .@arithmetic$, "+", "-", "*", "/"; 19 : mes "How many is A "+ .@arithmetic$[ .@arithmetic = rand(4) ] +" B ?"; 20 : switch ( .@arithmetic ) { 21 : default: .@answer = .@a + .@b; break;
  14. 2115,Valkyrie_Shield,Valkyrie Shield,5,30000,,500,,3,,1,0xFFFFFFFF,7,2,32,,65,1,4,{ bonus2 bSubEle,Ele_Water,20; bonus2 bSubEle,Ele_Fire,20; bonus2 bSubEle,Ele_Dark,20; bonus2 bSubEle,Ele_Undead,20; bonus bMdef,5; },{},{} then @reloaditemdb then relog then try to use slinger then put the v shield.. what do u mean by work with auto guard andreflect shield?
  15. im not really sure lol.. my dev did it... he said he just rename it and thats it lol he didnt tell me further on how did he rename it,.
  16. yes thanks gonna try it now it works sir thanks, but what if 400 max HP for every 1 vit with capped to 102,000 HP? because this is an accessory card it will over 102,000 HP if not capped
  17. guys need help on this kind of this script? •Max HP + 400 per base VIT??
  18. thanks annie...uhmm is there a better bot checker? btw why OnPCLoginEvent?? why not OnNPCKillEvent?
  19. lol consult here http://rathena.org/wiki/Custom_Mobs i know thats the guide and i did it like what i did on poring king.. i follow that guide and now i successfully made poring king.. but the others is error.. and i got that error >> attemp to index "JobNameTable" (a nil value) when i download the poring collection the author said he change the name of if because when you download alll of it the name of the spr/act is 1 to 28..except poring_king...
×
×
  • Create New...