Aug 14, 2009, 07:00 PM | |
Ive always really wondered this
For level hosting: the number of players select:
so for example, you type in 268, it ends up being 12 (268-256), or lets say you type in 137, it displays -119 (137-256). This extends from 128 to 288 displaying -128 to 32. But my question is why? why is this feature even existant? |
Aug 14, 2009, 09:32 PM | |
I'm not sure what you're talking about. If I try to enter a number above 32, it just sets it to 32.
Also, what does this have to do with JCS? I'm moving this thread to General in the mean time, since it seems more on topic there (and will get more views). |
Aug 16, 2009, 03:24 AM | |
More than 32 players you can't enter.
Well u can but only if you hex edit or so..but the number of players that can enter in server will remain 32.(this is to show how great hacker u are ![]()
__________________
![]() Do not dwell in the past, do not dream of the future, concentrate the mind on the present moment. |
Aug 16, 2009, 10:02 AM | ||||
It's because JJ2 does this:
Code:
static char maxPlayers = 0; char c = getchar(); if (c >= '0' && c <= '9') { maxPlayers = maxPlayers * 10; //loss of data since char is too small maxPlayers += c - '0'; if (maxPlayers > 32) { maxPlayers = 32; } } Code:
static char maxPlayers = 0; char c = getchar(); if (c >= '0' && c <= '9') { int tempMaxPlayers = maxPlayers * 10; tempMaxPlayers += c - '0'; if (tempMaxPlayers > 32) { tempMaxPlayers = 32; } maxPlayers = tempMaxPlayers; }
__________________
|
![]() |
«
Previous Thread
|
Next Thread
»
Thread Tools | |
|
|
All times are GMT -8. The time now is 05:32 AM.
Jazz2Online © 1999-INFINITY (Site Credits). Jazz Jackrabbit, Jazz Jackrabbit 2, Jazz Jackrabbit Advance and all related trademarks and media are ™ and © Epic Games. Lori Jackrabbit is © Dean Dodrill. J2O development powered by Loops of Fury and Chemical Beats. Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Original site design by Ovi Demetrian. DrJones is the puppet master. Eat your lima beans, Johnny.