• 🏆 Texturing Contest #33 is OPEN! Contestants must re-texture a SD unit model found in-game (Warcraft 3 Classic), recreating the unit into a peaceful NPC version. 🔗Click here to enter!
  • It's time for the first HD Modeling Contest of 2024. Join the theme discussion for Hive's HD Modeling Contest #6! Click here to post your idea!

Warcraft III - Patch 1.30.2

Status
Not open for further replies.
Level 4
Joined
Jan 12, 2014
Messages
128
Anyone else experienced this bug? I changed password on my main account and ever since I haven't been able to login. I don't have any email configured to it so can't recover it. Another odd feature is that every time i look Pinzu appears online in the clan screen but offline when i do /whois (my other acc is tag0). Other people have confirmed that my main acc appears online to them as well.

When I enter the correct password I lose connection from the login screen, otherwise i get 3.2 error (or something like that).

View attachment 313816

Battle.net oddities... ^^
Can't say, right after this update my account disappeared entirely, so no friends etc to check.

@Edit: last time I logged in (to my account) was around one month before the update occurred. Sad but my account wasn't that much important to me, so I just created a new one. Thought I should mention such strange things do happen.
 
Last edited:
Level 6
Joined
Jun 29, 2011
Messages
181
Anyone else experienced this bug? I changed password on my main account and ever since I haven't been able to login. I don't have any email configured to it so can't recover it. Another odd feature is that every time i look Pinzu appears online in the clan screen but offline when i do /whois (my other acc is tag0). Other people have confirmed that my main acc appears online to them as well.

When I enter the correct password I lose connection from the login screen, otherwise i get 3.2 error (or something like that).

View attachment 313816

Battle.net oddities... ^^

Something similar happened to a known guy. After he changed the password, he wasn't able to log in anymore.
 
Level 2
Joined
Jan 14, 2019
Messages
11
How can I now determine the host? If a red player chooses a blue color, it becomes Player(1), and another red player becomes Player(0). But the host is Player(1) as before.
 
Level 2
Joined
Jan 14, 2019
Messages
11
We did a system of kicks. If there first player red will choose a blue color, then the red player the system will not work, here is the code:
Code:
globals
    constant group EmptyGroup = CreateGroup()
    constant player Admin = Player(0)
endglobals

function StringToPlayer takes string color returns player
    set color = StringCase(color, false)
    if color == "red" then
        return Player(0)
    elseif color == "blue" then
        return Player(1)
    elseif color == "teal" then
        return Player(2)
    elseif color == "purple" then
        return Player(3)
    elseif color == "yellow" then
        return Player(4)
    elseif color == "orange" then
        return Player(5)
    elseif color == "green" then
        return Player(6)
    elseif color == "pink" then
        return Player(7)
    elseif color == "gray" then
        return Player(8)
    elseif color == "light blue" then
        return Player(9)
    elseif color == "dark green" then
        return Player(10)
    elseif color == "brown" then
        return Player(11)
    elseif color == "maroon" then
        return Player(12)
    elseif color == "navy" then
        return Player(13)
    elseif color == "turquoise" then
        return Player(14)
    elseif color == "violet" then
        return Player(15)
    elseif color == "wheat" then
        return Player(16)
    elseif color == "peach" then
        return Player(17)
    elseif color == "mint" then
        return Player(18)
    elseif color == "lavender" then
        return Player(19)
    elseif color == "coal" then
        return Player(20)
    elseif color == "snow" then
        return Player(21)
    elseif color == "emerald" then
        return Player(22)
    elseif color == "peanut" then
        return Player(23)
    endif
    return null
endfunction

function KickPlayer takes nothing returns boolean
    call KillUnit(GetFilterUnit())
    return false
endfunction

function MyTrig_Actions takes nothing returns nothing
    local string color = GetEventPlayerChatString()
    local player p = StringToPlayer(SubString(color, 3, StringLength(color)))
    if p != null and p != Admin and GetPlayerSlotState(p) == PLAYER_SLOT_STATE_PLAYING then
        call GroupEnumUnitsOfPlayer(EmptyGroup, p, Filter(function KickPlayer))
    endif
    set p = null
endfunction

function InitMyTrig takes nothing returns nothing
    set gg_trg_My = CreateTrigger(  )
    call TriggerRegisterPlayerChatEvent( gg_trg_My, Admin, "gg", false )
    call TriggerAddAction( gg_trg_My, function MyTrig_Actions )
endfunction
Tried to take an asterisk from a host name, but it is not part of a name.
 
Last edited:

deepstrasz

Map Reviewer
Level 69
Joined
Jun 4, 2009
Messages
18,798
What? xD
The host is the guy who hosted/created the game... it's not dependent on his color. And also the host will have the character * in front of his name in the lobby.
I think he's referring to the one who has power over the ingame commands (triggers) as usually mappers leave the first player for that which most of the times is the red one.
 
Level 1
Joined
Jul 20, 2018
Messages
3
someone help me plz I can't play see custom campaigns on custom campaigns in the game even I have put Campaigns folder in Warcraft 3
 

Attachments

  • Untitled.png
    Untitled.png
    264 KB · Views: 121
  • Untitled1.png
    Untitled1.png
    745.4 KB · Views: 119
Level 3
Joined
Oct 15, 2010
Messages
32
Is it possible to play lan on lastest patch using third party programs like zerotier.com
I tried but cant join the dam game it shows up but wont let me join in.
Or its compleatly blocked?
 
Status
Not open for further replies.
Top