ios 10 Posted March 18, 2011 Hello, I tried to find answers before posting here but in vain, I like the scoreboard is always 0 for all player and this throughout the party , i tried to use Score & Addscore command but i'am a noob in Sripting, I am very happy that someone helps me. thank you in advance ! Share this post Link to post Share on other sites
.kju 3242 Posted March 18, 2011 not possible to modify the scoreboard - addScore only effects the total score. Share this post Link to post Share on other sites
PELHAM 10 Posted March 18, 2011 Not sure if you mean multiplayer or singleplayer? In single player missions you use addrating eg: player addRating 2000; That adds 2000 extra points which show on the score board at the end of the mission. Share this post Link to post Share on other sites
ios 10 Posted March 19, 2011 i mean MP mission, COOP mission to be exact, I want the player stops to watch the scoreboard during the mission, So I'd like to either remove the scoreboard (something that seems impossible) or make the score remains at zero throughout the mission Share this post Link to post Share on other sites
.kju 3242 Posted March 19, 2011 You can disable the scoreboard if you intercept the key action with a displayEH on the main display. Share this post Link to post Share on other sites
ios 10 Posted March 19, 2011 So I can disable the scoreboard? it would be great! but you explain in detail how to do this, or give me an example. (thank you for taking the time to answer by taking your precious time) Share this post Link to post Share on other sites
giallustio 770 Posted March 19, 2011 You can disable it in the server config too Share this post Link to post Share on other sites
Lonestar 11 Posted March 19, 2011 NetStats=0 in your server profile. Share this post Link to post Share on other sites
Gunter Severloh 4007 Posted March 19, 2011 If you have an Mp mission which will have a description.ext then in that script is a code: respawnDialog = 0; // Show the scoreboard and respawn countdown timer for a player if he is killed with respawnType 3. Default is 1 (true). Share this post Link to post Share on other sites
ios 10 Posted March 21, 2011 Thanks Günter its was exactly what i was looking for Share this post Link to post Share on other sites
d3lta 10 Posted August 3, 2011 If you have an Mp mission which will have a description.ext then in that script is a code:respawnDialog = 0; // Show the scoreboard and respawn countdown timer for a player if he is killed with respawnType 3. Default is 1 (true). by scripting, respawnDialog is broken on A2:CO. Alternatives?:butbut: Share this post Link to post Share on other sites
d3lta 10 Posted August 3, 2011 what do you mean? The respawnDialog=0 don't hide the scoreborad after to press key I. Share this post Link to post Share on other sites
CarlGustaffa 4 Posted August 4, 2011 (edited) I would try displayAddEventHandler, that's how Domination prevents spacebar scanning. Don't think you can disable the "score" as shown on the map/statistics menu though, but for me the score viewing is of less importance compared to how you can use it to easily confirm kills. The map/statistics is far less convenient to use for this. Edited August 4, 2011 by CarlGustaffa Share this post Link to post Share on other sites
demonized 20 Posted August 4, 2011 NetStats=1; // (1.09 and later) Enables the scoreboard functionality in MP http://community.bistudio.com/wiki/server.armaprofile found ca 1/3 down the page. untested, but hopefully it does what you want... Share this post Link to post Share on other sites