Ice Texture ;.....;

Status
Not open for further replies.
J

Jim

Guest
Something else :D
Is there any trigger for making unwalkable areas type of terrain instead of making regions? and make them unwalkable? that would be very painful :/
ty
 

OneBadPsycho

10100111001
Reaction score
93
Something else :D
Is there any trigger for making unwalkable areas type of terrain instead of making regions? and make them unwalkable? that would be very painful :/
ty

What do you exactly mean?
-You can always use pathing blockers?
 
J

Jim

Guest
I tried that with pathing blockers and it doesn't work.
I mean to make a trigger like the slide which says that the Ugroup can only slide : Equal to Northrend ice terrain. So when a Unit goes on the snow terrain it will automatically die.
Haven't you ever played Polar Escape? :p
Thx in advance :thup:
 

OneBadPsycho

10100111001
Reaction score
93
Ok...

I updated the slide map and made the slide trigger automatically check if the unit is on Northrend snow and then kill it.

-Test the map. :p
 

Attachments

  • Slide.w3x
    21 KB · Views: 123
J

Jim

Guest
1: What is that ''You_Doesn't_Need_This'' u should name it ''You_Don't_Need_This'' smth with bolean.
2: u have no triggers for that i said
3: How the hell i die when i go on the snow??/ xD
4: Make some triggers to understand !?!?!?!?!?!?!?!?!?!?!?!?!?!?!

Edit: I copy - pasted those triggers to my map but nothing -.-
Edit2: You write ''When player 1 Red skipps a cinematic sequence . . .'' is that the trigger? it doesn't work in my map . . .
 

OneBadPsycho

10100111001
Reaction score
93
1: What is that ''You_Doesn't_Need_This'' u should name it ''You_Don't_Need_This'' smth with bolean.
2: u have no triggers for that i said
3: How the hell i die when i go on the snow??/ xD
4: Make some triggers to understand !?!?!?!?!?!?!?!?!?!?!?!?!?!?!

Edit: I copy - pasted those triggers to my map but nothing -.-
Edit2: You write ''When player 1 Red skipps a cinematic sequence . . .'' is that the trigger? it doesn't work in my map . . .

1. I do NOT need to rename a categori with triggers you don't need... (The name explains everything, lol)

2. YES, look at the Slide trigger, it detects if the unit is on snow and kills it, same answer as number 3...
I mean to make a trigger like the slide which says that the Ugroup can only slide : Equal to Northrend ice terrain. So when a Unit goes on the snow terrain it will automatically die.
-And yes it was what you asked for...

4. You doesn't need to understand the triggers in the "You_Doesn't_Need_This" categori, and for the rest of the triggers are there explanations at them!
 
J

Jim

Guest
Thats very complicated >.< w8 i will figure it out in 30 min
Edit: I did exactly what u did .but doesn't work ?!?!?!?!?! Here's the 2 errors . . .
Code:
//***************************************************************************
//*
//*  Global Variables
//*
//***************************************************************************

globals
    // User-defined
    group                   udg_Ugroup                 = null
    location                udg_LocSU                  = null
    location                udg_MoveLocSU              = null
    location                udg_Sloc                   = null
    boolean                 udg_you_dont_need_this     = false

    // Generated
    trigger                 gg_trg_Untitled_Trigger_001 = null
    trigger                 gg_trg_Untitled_Trigger_002 = null
    trigger                 gg_trg_Untitled_Trigger_003 = null
    trigger                 gg_trg_slide               = null
    trigger                 gg_trg_steer               = null
    trigger                 gg_trg_fog_of_war          = null
    trigger                 gg_trg_give_gold           = null
    trigger                 gg_trg_unwalkable_area     = null
endglobals

function InitGlobals takes nothing returns nothing
    set udg_Ugroup = CreateGroup()
    set udg_you_dont_need_this = false
endfunction

function Trig_slide_Func002Func002Func001C takes nothing returns boolean
    if ( not ( GetTerrainTypeBJ(udg_LocSU) == 'Nice' ) ) then
        return false
    endif
    return true
endfunction

function Trig_slide_Func002Func002C takes nothing returns boolean
    if ( not ( GetTerrainTypeBJ(udg_LocSU) == 'Nsnw' ) ) then
        return false
    endif
    return true
endfunction

function Trig_slide_Func002A takes nothing returns nothing
    set udg_LocSU = GetUnitLoc(GetEnumUnit())
    if ( Trig_slide_Func002Func002C() ) then
        call KillUnit( GetEnumUnit() )
    else
        if ( Trig_slide_Func002Func002Func001C() ) then
            set udg_MoveLocSU = PolarProjectionBJ(udg_LocSU, 20.00, GetUnitFacing(GetEnumUnit()))
            call SetUnitPositionLoc( GetEnumUnit(), udg_MoveLocSU )
            Call RemoveLocation (udg_MoveLocSU) [COLOR="Red"]// THIS IS THE FIRST ERROR LINE 53[/COLOR]
   else
        endif
    endif
    Call RemoveLocation (udg_LocSU) [COLOR="#ff0000"]//THIS IS THE SECOND ERROR LINE 57[/COLOR]
endfunction

function Trig_slide_Actions takes nothing returns nothing
    set udg_Ugroup = GetUnitsInRectAll(GetPlayableMapRect())
    call ForGroupBJ( udg_Ugroup, function Trig_slide_Func002A )
    call DestroyGroup (udg_Ugroup)
endfunction

//===========================================================================
function InitTrig_slide takes nothing returns nothing
    set gg_trg_slide = CreateTrigger(  )
    call TriggerRegisterTimerEventPeriodic( gg_trg_slide, 0.03 )
    call TriggerAddAction( gg_trg_slide, function Trig_slide_Actions )
endfunction
 

Larcenist

REP: Respect, Envy, Prosperity?
Reaction score
211
You have capital C in call.

They should look like this:

Code:
call RemoveLocation

Yours look like this:
Code:
Call RemoveLocation

JASS is case-sensitive, which results in minor issues like this.
 
J

Jim

Guest
The first time i wrote myself the code of the custom scripts, but exactly as you did.
After a long time that i was trying different things i was opening and closings the editors and the second time i just copied the code from the custom scripts from your map and it worked . . .
Can you explain this ?!?!?! xD
Edit:Lol i didn't see ur post . Jass is nooby system -.- wc3 needs a new one improved !!!!!!!!!!!!!!!!!!1
 

Larcenist

REP: Respect, Envy, Prosperity?
Reaction score
211
JASS is far from nooby ^^

If you ever decide to learn to use it you'll know what I'm talking about. JASS opens a lot of new doors for anyone willing to put some effort into learning it.
 
J

Jim

Guest
I hate doing threads - or looking -
So can anyone give me a code with triggers for a deafeat?
e.g. -If (all players(picked unit) are dead Equal to = true ) then show defeat icon)
Else-Do nothing
also a win
e.g. -if(a random unit reach at the <smth> ) then show win icon)
something like that?

Edit:I didn't see ur post again >.< tell me one thing : how old are you?
 

thewrongvine

The Evolved Panda Commandant
Reaction score
506
Jim... I hope you know everyone is starting to get annoyed of you. I won't say what I want to say.

Just because you can't do it because you don't understand it, doesn't mean it's nooby. It could mean that you are nooby. Just a thought.

If programming and stuff like JASS was so easy, so many people would have no jobs. The people that gave you codes are how it should be.

This was a little off-topic but I had to say it.
 

Larcenist

REP: Respect, Envy, Prosperity?
Reaction score
211
@Jim: I'm 17, if that makes any difference.

@thewrongvine: A little off-topic? ^^

I guess this was somewhat off-topic too.
 
J

Jim

Guest
Jim... I hope you know everyone is starting to get annoyed of you. I won't say what I want to say.

Just because you can't do it because you don't understand it, doesn't mean it's nooby. It could mean that you are nooby. Just a thought.

If programming and stuff like JASS was so easy, so many people would have no jobs. The people that gave you codes are how it should be.

This was a little off-topic but I had to say it.
HEY WHAT DO U WANT TO SAY. look u mean that i ask others to give me those fucking codes and i LAUGH AT THEM? i search alone i do the fucking whole thing for ME i searched for defeat and winning things but i just want to ensure .I also try to help others / search some new threads.
Get out of my life and plz never post smth which is for ME.
Stop contradict yourself.and yes i am noob i only know those things from jass and i dont have a job with those systems . .. i am pupil as the most of us in this site . i am not going to get a job with these things i just want to LEARN IT . if u want or have a job like this good for YOU
ANYWAY IF U WANT DONT GIVE ME THOSE CODES PEOPLE I CAN DO THOSE ALONE (except the code for sliding and steering)
and jass may open many doors and its hard as u say , but the little little little little little little little thing that u forgot is that i DONT FUCKING CARE i only want to make a map . . and i think that i will stop to make.I will play maps from others who know the BIG and IMPORTANT JASS LANGUAGE OR WHATEVER IS THIS
and everyone gets starting anoy from me because of YOU


Edit:Look what you made me to say . . . . . . omg
 

Knight7770

Hippopotomonstrosesquiped aliophobia
Reaction score
187
HEY WHAT DO U WANT TO SAY. look u mean that i ask others to give me those fucking codes and i LAUGH AT THEM? i search alone i do the fucking whole think for ME i searched for defeat and winning things but i just want to ensure .I also try to help others / search some new threads.
Get out of my life and plz never post smth which is for ME.
Stop contradict yourself.and yes i am noob i only know those things from jass and i dont have a job with those systems . .. i am pupil as the most of us in this site . i am not going to get a job with these things i just want to LEARN IT . if u want or have a job like this good for YOU
ANYWAY IF U WANT DONT GIVE ME THOSE CODES PEOPLE I CAN DO THOSE ALONE (except the code for sliding and steering)
and jass may open many doors and its hard as u say , but the little little little little little little little thing that u forgot is that i DONT FUCKING CARE i only want to make a map . . and i thing that i will stop to make.I will play maps from others who know the BIG and IMPORTANT JASS LANGUAGE OR WHATEVER IS THIS
and everyone gets starting anoy from me because of YOU


Edit:Look what you made me to say . . . . . . omg
In order:
That doesn't make sense.
He didn't contradict himself.
You don't seem to know any JASS.
That's not what thewrongvine was trying to say.
It isn't because of him; it's because of how you react.
 

thewrongvine

The Evolved Panda Commandant
Reaction score
506
I said "just a thought". Didn't mean to offend you.

What I meant to say was that, you're insulting JASS and all that use it just beause you are still learning. And I don't have a job like that; I probably don't know JASS more than you do, but I respect it because I have seen it do wonders. This is getting off-topic (rofl, "a little), so...
 
J

Jim

Guest
Hey are u friends? u got the same icon i think :cool:
If he didn't mean that then what did he mean?
say it clear. Ur friend thinks that he is smart? with those things he writes?
tell me i am waitting .. . . . . . .
Edit:didnt see ur post >.<
i will sucide omg . i insulted JASS? omg is he okay? i dont think i heart him . . .
are u SERIOUS ?


Edit2:w8 u got 2 accounts? xD u are sick . . .
 

Knight7770

Hippopotomonstrosesquiped aliophobia
Reaction score
187
Hey are u friends? u got the same icon i think
Yes, we are.
Ur friend thinks that he is smart? with those things he writes?
Yes, I do think that I'm smart (and with good reason).
i will sucide omg . i insulted JASS? omg is he okay? i dont think i heart him . . .
are u SERIOUS ?
You aren't making sense again.
 

thewrongvine

The Evolved Panda Commandant
Reaction score
506
They are different icons. Look closely (preferably at the K and T). :D

What are you trying to say? Does your ice/slide work? If it does, that's good and this thread is done.
 
Status
Not open for further replies.
General chit-chat
Help Users
  • No one is chatting at the moment.

      The Helper Discord

      Staff online

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top