• 🏆 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!
  • 🏆 Hive's 6th HD Modeling Contest: Mechanical is now open! Design and model a mechanical creature, mechanized animal, a futuristic robotic being, or anything else your imagination can tinker with! 📅 Submissions close on June 30, 2024. Don't miss this opportunity to let your creativity shine! Enter now and show us your mechanical masterpiece! 🔗 Click here to enter!

Why do i get fatal error ???

Status
Not open for further replies.
Level 16
Joined
May 1, 2008
Messages
1,605
Seas =)

I got your problem:

In the "Initialize Game Settings and Quests" - trigger you use:

  • Player Group - Add (Player((Integer A))) to Players_Horde_West
  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • If - Conditions
      • ((Player((Integer A))) slot status) Equal to Is playing
      • ((Player((Integer A))) controller) Equal to User
    • Then - Actions
      • Set This_Player_Is_Playing[(Integer A)] = True
      • Set Num_Players_Horde_West = (Num_Players_Horde_West + 1)
      • Set Total_Num_Players = (Total_Num_Players + 1)
    • Else - Actions
and
  • Player Group - Add (Player((Integer A))) to Players_Alliance_East
  • If (All Conditions are True) then do (Then Actions) else do (Else Actions)
    • If - Conditions
      • ((Player((Integer A))) slot status) Equal to Is playing
      • ((Player((Integer A))) controller) Equal to User
    • Then - Actions
      • Set This_Player_Is_Playing[(Integer A)] = True
      • Set Num_Players_Alliance_East = (Num_Players_Alliance_East + 1)
      • Set Total_Num_Players = (Total_Num_Players + 1)
    • Else - Actions
...sometimes. If I delete them - the Fatal error while loading is removed.

But I don't now how this able to fix - sorry.
(If I delete them - if the map starts, after 1 second again a fatal error, but I don't know if this error comes from deleting this actions or not but I think so, because you init. the multiboard with player(integer A))
 
Status
Not open for further replies.
Top