Jump to content

xienne15

Members
  • Posts

    226
  • Joined

  • Last visited

Everything posted by xienne15

  1. the textrues can be seen and not black, everything is fine, just the lightmap colors below the torches isnt and the lightmap i pt in certain area, Never tried calculating with shadows since i use calculate map without any shadows in any lightmaps.
  2. i do this 1) add lightmaps with colors 2) calculate lightmaps 3) the lightmap appears in browedit 4) save the map 5) add it to map cache 6) logged in 7) map has no lightmap i made. ><
  3. In browedit, my map has lightmaps, i added colors etc, but whn i save it and load it in-game the lightmaps are not there. How can i fix this?
  4. How if the first shop checks 512 ID and second shop checks 513 ID and third shop needs 514 ID and so on..... before opening?
  5. bif_fild01,72,61,4 script Meta Spirit 2114,5,5,{ mes "I will protect this city with my blazing fire!"; emotion e_no1; close; OnTouchNPC: unitwarp 0, "this", -1, -1; end; } so i added a message, but when i walk near that npc it will play like ontouch, how to make this npc talk only when clicked?
  6. im using this dynamic shop by emistry, but i tried to use goto function after each cases so it will go to if (countitem(26130) < 0) goto noring; noring: but its giving me error // Settings : // - Only required to edit the ShopSetting() Function // Notes : You may also add / remove Menu ( If any ) // - Shop Currency can be either ItemID or Variable Name, but must write within Quotation Marks ( "" ) // Ex. of Variable. -> Zeny , #CASHPOINTS , #KAFRAPOINTS , CustomVariable , #CustomVariable // - ERROR Message are used to show Invalid Settings in your NPC. // Leave this alone... - shop Emistry_Shop -1,512:100 bif_fild01,125,15,4 script Training Trader 672,{ function ShopSettings; function ValidateCost; function CurrencyInfo; function ClearData; function ValueConvert; function ErrorNotice; mes "[Training Trader]"; mes "Hello~ I sell exclusive items using ^FF0000Training Points^000000."; next; mes "[Training Trader]"; mes "Each shop use different training points acquired from your training"; next; mes "[Training Trader]"; mes "So use it well.~"; mes "So,Which shop you would like to look at?"; next; // Menu Selection select("Jump Training Shop","Other Training Shop"); ClearData(); ShopSettings( @menu ); npcshopitem "Emistry_Shop",512,100; npcshopdelitem "Emistry_Shop",512; for(set .@i,0; .@i < getarraysize( @ItemLists ); set .@i,.@i+1) npcshopadditem "Emistry_Shop",@ItemLists[.@i],@ItemCost[.@i]; mes "Okay...wait awhile"; mes "^00FF00____________________________^000000"; CurrencyInfo( @Currency$ ); mes "^00FF00____________________________^000000"; callshop "Emistry_Shop",1; npcshopattach "Emistry_Shop"; end; function ShopSettings { switch( getarg(0) ){ Case 1: if (countitem(26130) < 0) goto noring; // Currency [ Item ID / Variable Name ] set @Currency$,"JUMPPOINTS"; // Item ID Lists setarray @ItemLists[0],12315,12303; // Item Price setarray @ItemCost[0],2500,1000; break; Case 2: if (countitem(26131) < 0) { goto noring; // Currency [ Item ID / Variable Name ] set @Currency$,"OTHERPOINTS"; // Item ID Lists setarray @ItemLists[0],12315,12303; // Item Price setarray @ItemCost[0],25,1; break; // Case 4,5,6.....etc... default: ErrorNotice( "Invalid Menu Selection for Menu "+@menu+"." ); close; } if( @Currency$ == "" ) ErrorNotice( "Invalid Currency Setting in Menu "+@menu+" ." ); if( getarraysize( @ItemCost ) != getarraysize( @ItemLists ) || getarraysize( @ItemLists ) != getarraysize( @ItemCost ) ) ErrorNotice( "Missing or Extra Value of Item or Cost Settings in Menu "+@menu+" ." ); return; } function ErrorNotice { mes "^FF0000ERROR^000000 - "+getarg(0); mes "^00FF00____________________________^000000"; mes "Inform this Message to ^0000FFGame Staffs^000000 immediately !"; close; } function CurrencyInfo { if( getitemname( atoi( getarg(0) ) ) != "null" ){ mes "Item Currency : ^FF0000"+getitemname( atoi( getarg(0) ) )+"^000000"; mes "Available Amount : ^0000FF"+ValueConvert( countitem( atoi( getarg(0) ) ) )+"^000000"; }else if( getitemname( atoi( getarg(0) ) ) == "null" ){ mes "Variable Currency : ^FF0000"+getarg(0)+"^000000"; mes "Available Amount : ^0000FF"+ValueConvert( getd( getarg(0) ) )+"^000000"; } return; } function ValidateCost { if( getitemname( atoi( getarg(0) ) ) != "null" ){ if( countitem( atoi( getarg(0) ) ) < getarg(1) ) return 1; }else{ if( getd( getarg(0) ) < getarg(1) ) return 1; } return 0; } function ClearData { set @Currency$,""; set @TotalCost,0; deletearray @bought_nameid[0],getarraysize( @bought_nameid ); deletearray @bought_quantity[0],getarraysize( @bought_quantity ); deletearray @ItemLists[0],getarraysize( @ItemLists ); deletearray @ItemCost[0],getarraysize( @ItemCost ); return; } function ValueConvert { set .@num, atoi(""+getarg(0)); if ( .@num == 0 || .@num >= 2147483647 ) return getarg(0); set .@l, getstrlen(""+.@num); for ( set .@i,0; .@i < .@l; set .@i, .@i + 1 ) { set .@num$, .@num % pow(10,.@i+1) / pow(10,.@i) + .@num$; if ( (.@i+1) % 3 == 0 && .@i+1 != .@l ) set .@num$, ","+ .@num$; } return .@num$; } OnBuyItem: ShopSettings( @menu ); for(set @i,0; @i < getarraysize( @bought_nameid ); set @i,@i+1) for(set @j,0; @j < getarraysize( @ItemLists ); set @j,@j+1) if( @ItemLists[@j] == @bought_nameid[@i] ) set @TotalCost,@TotalCost + ( @ItemCost[@j] * @bought_quantity[@i] ); mes "^FF0000 BILLING LIST^000000"; mes "^00FF00____________________________^000000"; for( set @i,0; @i < getarraysize( @bought_nameid ); set @i,@i+1 ) mes "^FF0000"+@bought_quantity[@i]+" x ^0000FF"+getitemname( @bought_nameid[@i] )+"^000000"; mes "^00FF00____________________________^000000"; if( getitemname( atoi( @Currency$ ) ) != "null" ) mes "Total Cost : ^0000FF"+ValueConvert( @TotalCost )+" x "+getitemname( atoi( @Currency$ ) )+"^000000"; else if( getitemname( atoi( @Currency$ ) ) == "null" ){ mes "Total Cost : ^0000FF"+ValueConvert( @TotalCost )+" "+@Currency$+"^000000"; } mes "^00FF00____________________________^000000"; if( ValidateCost( @Currency$,@TotalCost ) ){ if( getitemname( atoi( @Currency$ ) ) != "null" ) mes "[ ^FF0000X^000000 ] Insufficient ^0000FF"+getitemname( atoi( @Currency$ ) )+"^000000"; else{ mes "[ ^FF0000X^000000 ] Insufficient ^0000FF"+@Currency$+"^000000"; } }else{ if( select( "^0000FFPurchase^000000:Cancel" ) == 1 ){ if( getitemname( atoi( @Currency$ ) ) != "null" ) delitem atoi( @Currency$ ),@TotalCost; else{ set getd( @Currency$ ),getd( @Currency$ ) - @TotalCost; } for(set @i,0; @i < getarraysize( @bought_nameid ); set @i,@i+1) getitem @bought_nameid[@i],@bought_quantity[@i]; message strcharinfo(0),"Purchased "+getarraysize( @bought_nameid )+" Items."; mes "Thank you for shopping."; } } ClearData(); close; } noring: mes "[Training Trader]"; mes "I'm so sorry but you need to finish the course and show me the ring from your mastered training,"; mes "in order for you to open this shop."; emotion e_sry; close; }
  7. They say i can use unitwarp to warp monster when the script has OnTouchNPC: OnTouchNPC: unitwarp 0,"this",-1,-1; what is this?
  8. They say i can use unitwarp to warp the monster when ontouchnpc is used in a script but no idea how to do that lol!
  9. make sure the grf is in the right location, and the grf must be 0x200 compression
  10. Thank you ill try it out later night. ^)^ how can i make this npc delete points ?
  11. What does it do: If you talk to this npc and pay 100z, he will give you 1-10 random points, this points can be added as you continue paying him 100z. and Every time i talk to this npc, it will tell me how many points i have, and when i reach 100 and above points it will tell me you reach greater than 100 points, here is your prize(the npc will give apple). i dont mind if the points will be in just text(alchemy ranking points) or in item form(poring coin).
  12. How can i make this possible? what do i need to edit?
  13. Thanks but actually i was requesting for a script that is when the night time comes the map will be invaded by zombies(1002),and when day comes, every monster in that map will die. Nothing special or other features should be included, Just the simple invasion without any prizes or such. @night announce "The night has come, The mist entered the city"; then the script will summon ghouls/zombies, once they are killed they will respawn. @day announce "The sun has come, the mist retreated"; all monsters in map will be removed.
  14. Info: The invasion will occur when the script detects that the server is night time, and when day time arrives, the invasion will end killing all the monster in a map(prontera)
  15. - script EP7_lightanim -1,{ OnLight: donpcevent "#ep7effectAby1::OnAction"; sleep2 1000; donpcevent "EP7_lightanim::OnLight"; end; } //=============== ars_fild58,95,103,0 script #ep7effectAby1 139,{ OnAction:specialeffect 14;end; } im using this one,but it doesnt do anything at all. Do i need to do something first for it to trigger? seems likes its not.....please help
  16. when i choose the angle patch any of the 3 will make the client crash when pressing shift..Unchecking it will not crash the client..how to fix this?
  17. using 2013-06-05 when i hold shift and move the client will crash
  18. haha this is funny, i cannot manually do that saince there are alot of weapons! RAWR, ill just wait for the fix that doesnt need to touch the item_db. But well thanks!
  19. Everyone, grab your revolvers, shotguns, rifles, whatever guns your Gunslinger likes to use and load them up because the Rebellion has arrived on kRO's Sakray server and OMG does this class have some awesome skills. Skill Icons.... Equips And Bullets.... Skill Descriptions (Credits To Zerozaku For Translations) Dragon Tail Max Level: 5 Pre-req: Crimson Marker, Howling Mine Desc: Grenade Launcher exclusive skill. Launches missiles at all targets on the screen that's marked by your Crimson Marker. If there are more than 1 target afflicted with your Crimson Marker, the damage done will be split between the targets. If there is no target afflicted with your Crimson Marker, the skill will fail to activate. Consumes 1 Dragon Tail Missile. 1 - 3000% 2 - 3500% 3 - 4000% 4 - 4500% 5 - 5000% Round Trip Max Level: 5 Pre-req: Fire Rain Desc: Gattling Gun exclusive skill. Unleash a barrage of gunfire at all targets in range, dealing damage and knocking the affected targets. If the targets are knocked back into the wall, they will take additional damage. Caster's DEX affects the amount of initial and knockback damage. Consumes 5 Bullets. 1~4 - 5x5 5 - 7x7 Rich's Coin (What a nice engrish name) Max Level: 1 Pre-req: Coin Flip level 5 Desc: Consume 100 zeny to generate 10 coins at a 50% chance. Once this skill is learned, failed Coin Flip casts will no longer remove the coin. Mass Spiral Max Level: 5 Pre-req: Piercing Shot level 5 Desc: Rifle exclusive skill. Fires a piercing bullet that additional damage depending on the target's DEF. Inflicts Bleeding status on the target at a high chance. Consumes 1 Coin and 1 Fullmetal Jacket Bullet 1 - 200% + additional dmg depending on target's def 2 - 400% + '' 3 - 600% + '' 4 - 800% + '' 5 - 1000% + '' Bind Trap Max Level: 5 Pre-req: Rebellion Basics Desc: Lay down a powerful movement impairing trap on the ground. All targets that enter the trap's area of effect will have their movement slowed significantly. Movement debuff duration is affected by the target's STR. Using Flicker skill on targets affected by Bind Trap will remove the trap and deal an additional damage to the targets. Maximum of 1 trap can be active at a time. Consumes 1 Coin and Special Alloy Trap. 1 - 10sec 2 - 11sec 3 - 12sec 4 - 13sec 5 - 14sec Banishing Buster Max Level: 5 Pre-req: Shatter Storm Desc: Shotgun exclusive skill. Deals damage to the target and enemies within 5x5 area of the target, removing a buff or debuff randomly. Caster's DEX affects the success rate of buff/debuff removal. Consumes 1 coin. 1 - removes 4 buff/debuff 2 - removes 6 " 3 - removes 8 " 4 - removes 10 " 5 - removes 12 " Shatter Storm Max Level: 5 Pre-req: Disarm level 5, Crowd Control Shot level 5 Desc: Shotgun exclusive skill. Deals damage to the target and enemies within 5x5 area of the target, destroying their equipped equipments randomly. Caster's DEX and skill level affects the success rate of equipment destruction. Target's AGI affects the success rate of equipment destruction. Indestructible or chemical protected equipments are not affected. 1 - destroys 2 random equipments 2 - destroys 2 random equipments 3 - destroys 3 random equipments 4 - destroys 4 random equipments 5 - destroys 5 random equipments Slug Shot Max level: 5 Pre-req: Banishing Buster level 5 Desc: Shotgun exclusive skill. Fire a special slugshot bullet at the target to deal damage. Heavier Bullet will increase the damage done. Accuracy drops if you are more than 3 cells away from the target. Players hit by this skill will be forced to sit. Monsters hit by this skill will be stunned. Consumes 1 coin 1 - -10 accuracy for every 1 cell (after initial 3) 2 - -9 accuracy for every 1 cell (after initial 3) 3 - -8 accuracy for every 1 cell (after initial 3) 4 - -7 accuracy for every 1 cell (after initial 3) 5 - -6 accuracy for every 1 cell (after initial 3) Anti-Material Blast Max level: 5 Pre-req: Mass Spiral level 1 Desc: Deals damage to the target and reduces the target's neutral element resistance. Caster's DEX and skill level affects the chance of reducing the target's neutral element resistance. Consumes 1 coin. 1 - 12 sec duration, 10% neutral resistance reduction 2 - 14 sec duration, 20% neutral resistance reduction 3 - 16 sec duration, 30% neutral resistance reduction 4 - 18 sec duration, 40% neutral resistance reduction 5 - 20 sec duration, 50% neutral resistance reduction Eternal Chain Max Level: 10 Pre-req: Chain Action level 10 Desc: Allows the caster to use Chain Action regardless of equipped weapon for a duration. Chain Action level is determined by the number of coins consumed by this skill. Consumes all coins. (15 + 15 * skill level) second duration Quick Draw Shot Max Level: 1 Pre-req: Eternal Chain level 1 Desc: This skill can only be cast after Chain Action is activated to deal additional damage to the target. Caster's DEX determines the number of additional attacks done by this skill. If there is a target afflicted with Crimson Marker within 21x21 range of the caster, that target receives additional damage from this skill. Crimson Marker Max Level: 1 Pre-req: Increase Accuracy level 1 Desc: Mark a target with crimson death mark, reducing its movement speed by 10% and allows the caster to track the target on the mini map. Only a maximum of 3 Crimson Marker can be active at a time. Boosts Quick Draw Shot, Dragon Tail and Hammer of God effect. 30 second duration Fire Dance Max Level: 5 Pre-req: Fallen Angel level 1 Desc: Revolver exclusive skill. Deals damage to all targets within 5x5 of the caster. Consumes 1 coin and 5 bullets. 1 - 100% + additional damage depending on caster's level 2 - 200% + " 3 - 300% + " 4 - 400% + " 5 - 500% + " Fire Rain Max Level: 5 Pre-req: Gattling Fever level 5 Desc: Gattling Gun exclusive skill. Fire bullets in a 3x10 frontal cone. Removes ground target skills in range at a chance. Caster's DEX and skill level affects the damage done. Consumes 10 Bullets. 1 - 500% + additional damage depending on caster's DEX 2 - " + " 3 - " + " 4 - " + " 5 - " + " Fallen Angel Max level: 5 Pre-req: Desperado level 10 Desc: Revolver exclusive skill. Jump to the targeted location and activate desperado. If there is an obstacle between the caster and targeted cell, this skill fails to activate. Higher skill level reduces the reuse delay. Platinum Alter Max Level: 5 Pre-req: Rebellion Basics Desc: This skill can only activate if the caster's equipped silver bullet. When activated, consumes all coins to increase ATK. Skill level affects the ATK increase. Reduces the damage taken from undead monsters during the skill duration. If the caster switches weapon or bullet during the duration, this buff will end. Flicker Max Level: 1 Pre-req: Coin Fling level 1 Desc: Activates and destroys caster's Howling Mine and Bind Trap on screen. Howling Mine Max Level: 5 Pre-req: Gunslinger Mine level 5 Desc: Grenade Launcher exclusive skill. Fire a sticking bomb at the target to deal damage. If the caster uses Flicker skill, Howling Mine will detonate on the target, dealing fire damage to the target and all enemies in range. Howling Mine can only be detonated with Flicker. If the Howling Mine is not detonated for a certain duration, it will fall off from the target. Targets damaged by Howling Mine will be inflicted with Burning status at a chance. Consumes 1 Mine Projectile. 1 - 400% + 800% Explosion damage 2 - 600% + 1100% Explosion damage 3 - 800% + 1400% Explosion damage 4 - 1000% + 1700% Explosion damage 5 - 1200% + 2000% Explosion damage Hammer of God Max Level: 5 Pre-req: Anti Material Blast level 5 Desc: Rifle exclusive skill. Target the ground to summon a hammer of god to strike it. If there is a target afflicted with Crimson Marker in the targeted area, hammer of god drops on the target and deals damage to the target and enemies in 5x5 area. If there is no target afflicted with Crimson Marker in the targeted area, hammer of god will drop on a random location within the area. Targets hit by this skill will be stunned at a 100% chance. Higher skill level increases the stun duration. 1 - 2000% + 3 second stun 2 - 2500% + 3 second stun 3 - 3000% + 4 second stun 4 - 3500% + 4 second stun 5 - 4000% + 5 second stun Heat Barrel Max Level: 5 Pre-req: Fire Dance level 5 Desc: Consume all coins to increase caster's ASPD and ATK at the cost of accuracy. Higher skill level increases ASPD and ATK increase as well as accuracy decrease. After the duration, caster will not be able to attack or use skills and items for 10 seconds. This skill cannot be used with Last Stand. If the caster switches equipment during the duration, the skill will end and activate the 10 second penalty. 60 second duration. Credits: original post from Rytech
  20. im having runtime microsoft visual c++ error when pressing go.
  21. xienne15

    mob_avail

    How can i make the Player looks has different cloth color? there is no Cloth_Color, yes i'm referring to a monster player. // MobID,SpriteID,Sex,Hair_Style,Hair_Color,Weapon,Shield,Head_Top,Head_Middle,Head_Bottom,Option,Dye_Color is there a way i can add the cloth_color after dye_color?
  22. You should be putting how to solve this.
×
×
  • Create New...