Yeh, I've sortof found the triggers. But to me it's all a comlete mess, and seems to be missing alot of triggers. You might have gotten a different result from me, so I'd love to see yours. But I'm still wondering if anyone is able to deprotect this completly so that the triggers will be accessable by the editor and shown in GUI
This is the result that I got. I can't possibly see how this can be all of it. If any of you could just take a quick look at it and see if the results look correct I'd really apreciate it I feel like I've done something wrong with this deprotect.
You do not have the required permissions to view the files attached to this post.
ChatBot: FatherSpace logs into the Chat.
(02:24:28) Lanaya: Gtfo ken.
(02:24:33) ChatBot: FatherSpace logs out of the Chat.
(02:24:40) Lanaya: Thought so. bitch.
(02:24:44) ChatBot: FatherSpace logs into the Chat.
(02:24:48) FatherSpace: Can I come back yet?
(02:24:51) Lanaya: What'd i say earlier.
(02:24:51) Lanaya: No.
(02:24:58) FatherSpace: Let's try this...
(02:25:01) ChatBot: Lanaya has been logged out (Kicked).
(14:33:51) 2Pac: Do you know what'S so funny?
(14:34:01) Lanaya: No, please show me.
(14:34:07) 2Pac: This.
(14:34:09) ChatBot: Lanaya has been logged out (Kicked).
(14:34:10) 2Pac:
(14:35:59) haxorico: No one will belive me if I say "I got this song from 2pac on MSN" lolz ^^
(14:36:02) Lanaya: lolz.
(14:36:16) 2Pac: I AIN'T DEAD FFS.
(14:36:26) 2Pac: I'm a living legend, y'now.
(14:37:17) haxorico: why is 2Pac a legend?
(14:37:28) Lanaya: He's the worse rapper evar.
(21:53:08) (673237): plzplzplz, im sorry about before.
(21:53:26) FatherSpace: I'm sorry you were born.
(21:53:31) ChatBot: (673237) has been logged out (Kicked).
Well I might be completly wrong, but this function looks so "slim" it seems to me it's missing something. And although I'm quite the newb at jass, I can't see how this function can do anything. And if it can, then what?
function Doodad001381_DropItems takes nothing returns nothing
local widget trigWidget=null
local unit trigUnit=null
local integer itemID=0
local boolean canDrop=true
set trigWidget=bj_lastDyingWidget
if(trigWidget==null)then
set trigUnit=GetTriggerUnit()
endif
if(trigUnit!=null)then
set canDrop=not IsUnitHidden(trigUnit)
if(canDrop and GetChangingUnit()!=null)then
set canDrop=(GetChangingUnitPrevOwner()==Player(PLAYER_NEUTRAL_AGGRESSIVE))
endif
endif
if(canDrop)then
//Item set 0
call RandomDistReset()
call RandomDistAddItem('I02G',20)
call RandomDistAddItem(-1,80)
set itemID=RandomDistChoose()
if(trigUnit!=null)then
call UnitDropItem(trigUnit,itemID)
else
call WidgetDropItem(trigWidget,itemID)
endif
endif
set bj_lastDyingWidget=null
call DestroyTrigger(GetTriggeringTrigger())
endfunction
No, nothing wrong..thats just how jass is. Compared to GUI, jass is a hell of a lot more efficient and smaller.
haxorico wrote:1) why is it broken fulfilled?
Its in broken fulfilled since this topic was made in July. When the forums rearranged, all fulfilled, were moved to broken instead because of the patch.
I know this is not the time, or place to learn some jass, but could you quickly tell me what this function does?
To me, this is a fuction that makes sense: