View Single Post
GsiX
gee, six eggs
Join Date: Aug 2012
Location: Land Below The Wind
Old 10-16-2012 , 06:46   Re: [L4D2] Player Unstick
Reply With Quote #82

solution 1:
You try go to line number 4 and you found this:
PHP Code:
#define MAX_PLAYERS 19 
change it to:
PHP Code:
#define MAX_PLAYERS 65 
Solution 2:
step 1 - go to line no. 4 and you found this, delet it:
PHP Code:
#define MAX_PLAYERS 19 
step 2 - Replace any keywords "MAX_PLAYERS" to "MAXPLAYERS+1". Should be look like this:
PHP Code:
new Float:g_Location[MAXPLAYERS+1][3]; // Client location array
new g_teleportsLeft[MAXPLAYERS+1]; // Client teleports left array
new Handle:g_hNumOfTeleports// Handle for number of allowed teleports
new Handle:g_hPluginAnnounce// Handle for plugin announcement
new Handle:ClientDelayTimers[MAXPLAYERS+1][2]; // Timers for teleport delays on clients 
I have no idea why this plugin still in the approved section.
Anyway try this.
Attached Files
File Type: sp Get Plugin or Get Source (l4d2unstick.sp - 835 views - 6.5 KB)

Last edited by GsiX; 10-16-2012 at 07:11.
GsiX is offline