Search results

  1. B

    making a stacking aura?

    I wanna make an aura Strenght in Numbers that stacks,so the more units that have it are close to eachother,the bigger bonus they get.Is this somehow possible with normal auras,or do i have to do it somehow in jass..
  2. B

    simple Equipment System trigger not working

    Im jst making it so a hero can only have one of each item class(permanent,campaign,artifact...) but it doesnt work properly at all.Here is the code I added a debugmsg to see whats going on: function ItemCheckWeaponPermanent_Conditions takes nothing returns boolean if ( not (...
  3. B

    Editor tells me "Syntax Error" for no reason

    function CreateSquad takes player owner, integer array IDs, integer size, integer dummyID, string order, unit trainer returns nothing local integer i = 0 local location rally = GetUnitRallyPoint( trainer ) local real X = GetUnitX( trainer ) local real Y = GetUnitY( trainer ) loop...
  4. B

    How do i make an illusion of many things instead of one moving.

    I'm making a projectile system where marines shoot bullets and the bullets are actualy units so the marines can hide behind cover and stuff.The problem is,for it to look good the marines need a low cooldown and that creates many bullets,so it lags a lot.How can i make it look like one bullet is...
  5. B

    Using LocalPlayer with Multiboards and Quests?

    I'm basicly trying to make a resource system which allows players to have like...10 resources so im using a multiboard with 10 colums and 2 rows+icon.The icon is the icon of the resource,the 1st row is the name and the second one is the quantity.The problem is multiboard is for everyone.Is there...
  6. B

    How to make a unit unpannable?

    I've seen this in a map,I can't remember where,but there you select a unit from a hero icon on the top left of the screen and from this unit you make global spells and stuff like that,but the important thing was,no matter how much you click the units icon or portrait it doesn't pan the camera to...
  7. B

    How to hide chat in-game?

    Im looking for a way to make a system that when the player types a message it doesnt show up so the system can do something with it and then display it.Basicly a custom chat.Like making disabled/enabled chat and stuff like that.My question is is there some jass function that can do that?
  8. B

    Another dumb question

    ok so i create units with a loop and after each created unit i set its custom value to 300. loop exitwhen( i == 12 ) call CreateUnit(GetOwningPlayer(caster),'sbdu',x,y,i*30.00) call SetUnitUserData(bj_lastCreatedUnit,300) //(tried with GetLastCreatedUnit(),still doesnt work ;/ set i = i...
  9. B

    Help with function im noob

    Ok im making a spell that a unit called Spore Beast does something like spore nova-spawns 8 spores and they travel in 8 directions.I havent made the damage yet,but ill make it later.The problem is my function is giving me error: function SporeBurstAbi takes unit caster returns nothing...
  10. B

    Kinda nooby question?

    I'm making squad units so when you select a unit from the squad you select the whole squad.I did that using unit point values.For instance-the Marine has a point value of 1 and the marine commander has a point value of 1 so when you chose one of them the other one is also selected.Here's the...
Top