Would you like to react to this message? Create an account in a few clicks or log in to continue.
Log in

I forgot my password

April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar


Chaosphere & Chronosphere Trigger ?

4 posters

Go down

Chaosphere & Chronosphere Trigger  ? Empty Chaosphere & Chronosphere Trigger ?

Post  filipapeter Thu 29 Nov 2012 - 7:47

can you tell me this two trigger?
(from Vampirism Ultra)

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  Anonymou_s Thu 29 Nov 2012 - 18:05

Do you understand JASS? I have it in JASS at the moment, i can show you the GUI version of it if you'd like.
Anonymou_s
Anonymou_s
Administration:
Administration:

Posts : 748
Join date : 2009-07-02
ROTD Rank : Pandemic & Ultra
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0 / 40 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: Force Recon - 0321
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue90/100Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (90/100)

http://www.rotd.forumotion.net

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Sat 1 Dec 2012 - 5:33

I dont understand JASS

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Sat 1 Dec 2012 - 9:29

Post JASS

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  ShadowThong Sun 2 Dec 2012 - 16:58

If we're already at it talking about code and what not, Complex, could you please post the code on how to let the slots be closed for the ref/obs, in the .cfg? That'd be great Very Happy
ShadowThong
ShadowThong
ClanRotd Bot Admin:
ClanRotd Bot Admin:

Posts : 122
Join date : 2012-01-06
Age : 7
ROTD Rank : I am Chocolate
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0 / 40 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  Anonymou_s Sun 2 Dec 2012 - 21:16

This is as basic as you're going to get in means of GUI and Jass. Also, make sure to add spacing, if u cnp, but i'd suggest use it as a guideline to suit your needs.


Chaosphere (Uses a dummy unit to cause damage

function ReleaseConditions takes nothing returns boolean
return UnitHasItemOfTypeBJ(GetAttacker(), 'I00I') == true
endfunction

function RCD takes nothing returns nothing
local unit e
local unit u
local player p = GetOwningPlayer(GetAttacker())
local integer i = GetPlayerId(p) 1
local location l = GetUnitLoc(GetAttacker())
local real x = GetLocationX(l)
local real y = GetLocationY(l)
set u = CreateUnit(p,'h01K',x,y,0.0)
call IssueImmediateOrder( u, "stomp" )
call UnitApplyTimedLife(u,'Bhwd',3.0)
set e = CreateUnit(p,'h05V',x,y,0.0)
call UnitApplyTimedLife(e,'Bhwd',3.0)
call RemoveLocation(l)
set l = null
set u = null
set e = null
endfunction


Chronosphere #1 (Also uses a dummy untit to cause the Chrono Effect)
function ChronosphereConditions takes nothing returns boolean
return GetSpellAbilityId() == 'A000'
endfunction

function ChronosphereActions takes nothing returns nothing
local unit u
local player p = GetOwningPlayer(GetSpellAbilityUnit())
local real x = GetLocationX(GetSpellTargetLoc())
local real y = GetLocationY(GetSpellTargetLoc())
set udg_ChronosphereCaster = GetSpellAbilityUnit()
set u = CreateUnit(p,'h00K',x,y,0.0)

call UnitApplyTimedLife(u, 'BTLF', 8.00)
call GroupAddUnit(udg_ChronosphereGroup[0], u)
call EnableTrigger( gg_trg_ChronosphereLoop )
set u = null
endfunction


Chronosphere #2
function MatchingCondition takes nothing returns boolean
return GetFilterUnit() != udg_ChronosphereCaster and IsUnitType(GetFilterUnit(), UNIT_TYPE_MELEE_ATTACKER) != true
endfunction

function Group2Actions takes nothing returns nothing
call PauseUnit(GetEnumUnit(), true)
call SetUnitTimeScalePercent( GetEnumUnit(), 0.00 )
endfunction

function GroupActions takes nothing returns nothing
local location l = GetUnitLoc(GetEnumUnit())
set udg_ChronosphereGroup[1] = GetUnitsInRangeOfLocMatching(400.00,l,Condition(function MatchingCondition))
call ForGroup(udg_ChronosphereGroup[1], function Group2Actions)
call RemoveLocation(l)
set l = null
endfunction

function ChronosphereLoopActions takes nothing returns nothing
call ForGroup(udg_ChronosphereGroup[0], function GroupActions)
endfunction

Chronosphere #3
function ChronosphereResumeConditions takes nothing returns boolean
return GetUnitTypeId(GetDyingUnit()) == 'h00K'
endfunction

function GroupResMatching takes nothing returns boolean
return GetFilterUnit() != udg_ChronosphereCaster and IsUnitType(GetFilterUnit(), UNIT_TYPE_MELEE_ATTACKER) != true
endfunction

function GroupResActions takes nothing returns nothing
call PauseUnitBJ( false, GetEnumUnit() )
call SetUnitTimeScalePercent( GetEnumUnit(), 100.00 )
endfunction

function ChronosphereResumeActions takes nothing returns nothing
local location l = GetUnitLoc(GetDyingUnit())
call RemoveUnit( GetDyingUnit() )
set udg_ChronosphereGroup[2] = GetUnitsInRangeOfLocMatching(400.00, l, Condition(function GroupResMatching))
call ForGroupBJ( udg_ChronosphereGroup[2], function GroupResActions )
call RemoveLocation(l)
set l = null
endfunction
Anonymou_s
Anonymou_s
Administration:
Administration:

Posts : 748
Join date : 2009-07-02
ROTD Rank : Pandemic & Ultra
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0 / 40 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: Force Recon - 0321
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue90/100Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (90/100)

http://www.rotd.forumotion.net

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Mon 3 Dec 2012 - 6:50

OMG! Make the GUI trigger please.

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  ID_ied Tue 4 Dec 2012 - 2:38

filipapeter wrote:OMG! Make the GUI trigger please.
<3
ID_ied
ID_ied
Administration:
Administration:

Posts : 386
Join date : 2012-08-08
ROTD Rank : Someone
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0 / 40 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: Navy Corpsman
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue9/10Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (9/10)

http://joshdouglas35@gmail.com

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Thu 13 Dec 2012 - 12:17

Please make a GUI trigger.

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  Anonymou_s Thu 13 Dec 2012 - 14:36

Its really simple to make. I cannot post my version of the Chaosphere/Chronosphere simply because you wont understand what is done its a bit more complicated then what it really needs to be because i need it to suit my needs but as for you it just is a simple effect. Lets assume you want it just like ultra.

(Note: this is typed out and wont be the exact path of the GUI trigger)

Chaosphere


Event
When a unit is attacked

Condition
Attacking Unit is equal to Vampire

Action
Create 1 "xxxx" for player x at x facing x
Set Unit = LastCreatedUnited
Order Unit to stomp

You may kill or apply a lifetime on "Unit" and you're done.

You will use 1 unit variable and you will need to make a dummy caster with the ability stomp and you're done.

Ok, for Chronosphere the most simple way i can think of for you to do this is make a trigger that spawns a unit in the map, again place this unit under a variable and use the GUI trigger (Get units within range x of Unit) and set those units within range to a group. then freeze units in that group for x amount of seconds and then unfreeze that group.
Anonymou_s
Anonymou_s
Administration:
Administration:

Posts : 748
Join date : 2009-07-02
ROTD Rank : Pandemic & Ultra
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0 / 40 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: Force Recon - 0321
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue90/100Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (90/100)

http://www.rotd.forumotion.net

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Sat 15 Dec 2012 - 9:18

Can you tell me the models of older Chaosphere (it looks like big bad voodo).

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  Anonymou_s Mon 17 Dec 2012 - 2:59

In newer versions it has changed but yes, that was the old model. although it was edited purple.
Anonymou_s
Anonymou_s
Administration:
Administration:

Posts : 748
Join date : 2009-07-02
ROTD Rank : Pandemic & Ultra
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0 / 40 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: Force Recon - 0321
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue90/100Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (90/100)

http://www.rotd.forumotion.net

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Mon 17 Dec 2012 - 13:37

Can you make for me map with Chaosphere (trigger item and vamp).

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  filipapeter Mon 24 Dec 2012 - 6:50

how i can make jass trigger?

filipapeter
Banned
Banned

Posts : 50
Join date : 2012-01-16
Age : 24
ROTD Rank : wtf rank???
Warn Status :
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue4 / 44 / 4Chaosphere & Chronosphere Trigger  ? Right_bar_bleue


Marine Statistics
MOS Specialty: [MOS Name & Number]
MOS Experience:
Chaosphere & Chronosphere Trigger  ? Left_bar_bleue0/0Chaosphere & Chronosphere Trigger  ? Empty_bar_bleue  (0/0)

Back to top Go down

Chaosphere & Chronosphere Trigger  ? Empty Re: Chaosphere & Chronosphere Trigger ?

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum