Suggestions Thread

Quote:
Originally Posted by AirKite
Посмотреть сообщение
TogglePlayerControllableKey(playerid, controlkey, bool:toggle)
pawn Код:
// Example: new TogglePlayerControllableEx (without mouse blocking)
stock TogglePlayerControllableEx(playerid, bool:toggle) {
    TogglePlayerControllableKey(playerid, KEY_UP,               toggle);
    TogglePlayerControllableKey(playerid, KEY_DOWN,             toggle);
    TogglePlayerControllableKey(playerid, KEY_LEFT,             toggle);
    TogglePlayerControllableKey(playerid, KEY_RIGHT,            toggle);
    TogglePlayerControllableKey(playerid, KEY_CROUCH,           toggle);
    TogglePlayerControllableKey(playerid, KEY_JUMP,             toggle);
    TogglePlayerControllableKey(playerid, KEY_FIRE,             toggle);
    TogglePlayerControllableKey(playerid, KEY_SECONDARY_ATTACK  toggle);
}
Quote:
Originally Posted by AirKite
Посмотреть сообщение
I did mistake in my suggestion code. Fixed:
pawn Код:
native SetPlayerListenKeyFrequency(playerid, counts, pertime) - Available Frequency (counts per time).
// Example: SetPlayerListenKeyFrequency(playerid, 10, 5000); 10 count of push in 5 seconds Available. (Other Client must NOT SENDING TO SERVER) - (and server must protect if client not follow this rule, disconnect (scriptable or in code samp-server)).

native SetPlayerListenKey(playerid, keycode, bool:toggle) - return true or false.
// Example: SetPlayerListenKey(playerid, KEY_CODE_ENTER, true);

native GetPlayerListenedKey(playerid, keycode) - return true or false
// Example: GetPlayerListenedKey(playerid, KEY_CODE_ENTER); Should return TRUE if key is down.

public OnListenedKeyResponse(playerid, keycode, updown);

///////////////////////////////////////////////////////////////////////////
// Example script:
public OnPlayerConnect(playerid) {
    SetPlayerListenKeyFrequency(playerid, 10, 5000);
    SetPlayerListenKey(playerid, KEY_CODE_ENTER, true);
    SetPlayerListenKey(playerid, KEY_CODE_F12, true);
}

public OnListenedKeyResponse(playerid, keycode, isdown) {
    if(keycode == KEY_CODE_ENTER && isdown) { // DOWN
        // Show dialog text "You Pushed ENTER"
    } else if(keycode == KEY_CODE_F12) {
        if(isdown) { // DOWN
            // SHOW TEXTDRAW (CLOCK - TIME)
            // Send Chat, like: /me looked watch
            // Aply animation (see on clock (hand))
        } else { // UP
            // HIDE TEXTDRAW (CLOCK - TIME)
            // CLEAR animation (see on clock (hand))
        }
    }  
}
///////////////////////////////////////////////////////////////////////////
These features would completely change sa-mp. It'd be up to the server owner which keys he wants to work with, maybe he doesn't want OnPlayerKeyStateChange to be called when a players presses KEY_NO, KEY_YES or any other button. With this feature they could also include all keys without the risk to using a lot of resources and lagg in the server (as i think that was the main reason why Kalcor didnt want to add them). It'd be up to the owner if he wants to lagg his server by using all the keys just like lots of timers can ruin a server. Also if its not possible to stop recording keys onplayerconnect maybe these settings should be set up during ongamemodeinit or in server.cfg
Reply


Messages In This Thread
Suggestions Thread - by Lorenc_ - 08.01.2013, 08:49
AW: Suggestions Thread - by BloodyEric - 08.01.2013, 08:53
Re: Suggestions Thread - by [D]ry[D]esert - 08.01.2013, 09:14
Re: Suggestions Thread - by TopFuel - 08.01.2013, 09:18
AW: Suggestions Thread - by BloodyEric - 08.01.2013, 09:21
Re: Suggestions Thread - by Kar - 08.01.2013, 09:28
Re: AW: Suggestions Thread - by TopFuel - 08.01.2013, 09:28
Re: Suggestions Thread - by Lightning[SV] - 08.01.2013, 09:41
Re: Suggestions Thread - by Johndaonee - 08.01.2013, 09:43
Re: Suggestions Thread - by TopFuel - 08.01.2013, 09:44
Re: Suggestions Thread - by gabyk - 08.01.2013, 09:47
Re: Suggestions Thread - by DiGiTaL_AnGeL - 08.01.2013, 09:55
Re: Suggestions Thread - by JaKe Elite - 08.01.2013, 10:04
Re: Suggestions Thread - by Faisal_khan - 08.01.2013, 10:12
Re: Suggestions Thread - by mendax - 08.01.2013, 10:15
Re: Suggestions Thread - by Mauzen - 08.01.2013, 10:35
Re: AW: Suggestions Thread - by Riddick94 - 08.01.2013, 11:35
Re: Suggestions Thread - by Kyle - 08.01.2013, 11:43
Re: Suggestions Thread - by RaZVaN ^ xD - 08.01.2013, 11:51
Re: Suggestions Thread - by Vince - 08.01.2013, 11:59
Re: Suggestions Thread - by JernejL - 08.01.2013, 12:18
Re: Suggestions Thread - by Sergei - 08.01.2013, 12:28
Re: Suggestions Thread - by JoBullet - 08.01.2013, 12:29
Re: Suggestions Thread - by IstuntmanI - 08.01.2013, 12:30
Re: Suggestions Thread - by JernejL - 08.01.2013, 12:30
Re: Suggestions Thread - by doreto - 08.01.2013, 12:31
Re: Suggestions Thread - by JernejL - 08.01.2013, 12:33
Re: Suggestions Thread - by gilpenner - 08.01.2013, 12:37
Re: Suggestions Thread - by - Lukas! - 08.01.2013, 15:31
Re: Suggestions Thread - by IstuntmanI - 08.01.2013, 17:00
Re: Suggestions Thread - by CONTROLA - 08.01.2013, 17:34
Re: Suggestions Thread - by GameMan - 08.01.2013, 17:35
Re: Respuesta: Suggestions Thread - by ikkentim - 08.01.2013, 17:40
Re: Suggestions Thread - by Jay_ - 08.01.2013, 17:46
Re: Suggestions Thread - by White_116 - 08.01.2013, 17:46
Re: Suggestions Thread - by deffo - 08.01.2013, 17:51
Re: Suggestions Thread - by Stepashka - 08.01.2013, 18:03
Re: Suggestions Thread - by AirKite - 08.01.2013, 18:11
Re: Suggestions Thread - by Kuddy - 08.01.2013, 18:20
Re: Suggestions Thread - by GWMPT - 08.01.2013, 18:21
Re: Suggestions Thread - by Stepashka - 08.01.2013, 18:25
Re: Suggestions Thread - by DartakousLien - 08.01.2013, 18:27
Re: Suggestions Thread - by leong124 - 08.01.2013, 18:49
Re: Suggestions Thread - by White_116 - 08.01.2013, 19:01
Re: Suggestions Thread - by leong124 - 08.01.2013, 19:10
Re: Suggestions Thread - by GWMPT - 08.01.2013, 19:22
Re: Suggestions Thread - by CJ101 - 08.01.2013, 19:40
Re: Suggestions Thread - by Luis- - 08.01.2013, 19:56
Re : Re: Suggestions Thread - by Vukilore - 08.01.2013, 19:58
Re: Suggestions Thread - by ReneG - 08.01.2013, 22:05
Re: Suggestions Thread - by Bug. - 08.01.2013, 23:22
Re: Suggestions Thread - by Luis- - 08.01.2013, 23:28
Re: Suggestions Thread - by nickstar - 09.01.2013, 04:07
AW: Suggestions Thread - by [DFE]Ike - 09.01.2013, 04:14
Re: Suggestions Thread - by MickeyB - 09.01.2013, 08:43
Re: Suggestions Thread - by Jakku - 09.01.2013, 14:28
AW: Suggestions Thread - by Littl3j0hNy - 10.01.2013, 20:29
Re: Suggestions Thread - by FufLa - 10.01.2013, 20:48
Re: Suggestions Thread - by Jay_ - 10.01.2013, 20:53
Re: AW: Suggestions Thread - by Dredd - 10.01.2013, 20:56
Re: Suggestions Thread - by BeckzyBoi - 10.01.2013, 20:59
Re: Suggestions Thread - by CJ101 - 10.01.2013, 21:29
Re: Suggestions Thread - by AirKite - 10.01.2013, 23:06
Re: Suggestions Thread - by xX60CentXx - 10.01.2013, 23:29
Re: Suggestions Thread - by Riddick94 - 10.01.2013, 23:48
Respuesta: Suggestions Thread - by nikex - 11.01.2013, 00:36
Re: Suggestions Thread - by Zephyr - 12.01.2013, 00:50
Re: Suggestions Thread - by SchurmanCQC - 12.01.2013, 02:04
Re: Suggestions Thread - by willsuckformoney - 13.01.2013, 04:21
Re: Suggestions Thread - by mineralo - 13.01.2013, 06:54
Re: Suggestions Thread - by wups - 13.01.2013, 08:29
Re: Suggestions Thread - by DiDok - 13.01.2013, 08:32
Re: Suggestions Thread - by Emre__ - 13.01.2013, 08:55
Re: Suggestions Thread - by erorcun - 13.01.2013, 09:30
Re: Suggestions Thread - by leong124 - 13.01.2013, 10:12
AW: Suggestions Thread - by Atrox95 - 13.01.2013, 11:26
Re: Suggestions Thread - by hub4 - 13.01.2013, 11:57
Re: Suggestions Thread - by shadowdog - 13.01.2013, 15:11
Re: Suggestions Thread - by Redirect Left - 13.01.2013, 15:16
Re: Suggestions Thread - by Diorturato - 13.01.2013, 15:17
Re: Suggestions Thread - by IstuntmanI - 13.01.2013, 16:00
Re: Suggestions Thread - by Edvin - 13.01.2013, 16:14
Re: Suggestions Thread - by pasha97 - 13.01.2013, 16:20
Re: Suggestions Thread - by Riddick94 - 13.01.2013, 16:50
Re: Suggestions Thread - by RayW - 13.01.2013, 17:30
Re: Suggestions Thread - by JM_Millers - 13.01.2013, 17:43
Re: Suggestions Thread - by hub4 - 13.01.2013, 17:46
AW: Suggestions Thread - by Mellnik - 13.01.2013, 17:47
Re: Suggestions Thread - by GWMPT - 13.01.2013, 18:02
Re: Suggestions Thread - by new121 - 13.01.2013, 18:49
Respuesta: Suggestions Thread - by adri1 - 13.01.2013, 20:24
AW: Suggestions Thread - by DarkZero - 13.01.2013, 20:50
Re: Suggestions Thread - by Yiin - 13.01.2013, 20:52
Re: Suggestions Thread - by TheGoldenHelmet - 13.01.2013, 23:06
Re: AW: Suggestions Thread - by Yiin - 13.01.2013, 23:23
Re: AW: Suggestions Thread - by Scenario - 13.01.2013, 23:56
Re: Suggestions Thread - by [KHK]Khalid - 14.01.2013, 08:49
Re: Suggestions Thread - by Swimor - 14.01.2013, 12:14
Re: Suggestions Thread - by mineralo - 14.01.2013, 12:29
Re: Suggestions Thread - by Diorturato - 14.01.2013, 16:19
Re: Suggestions Thread - by mineralo - 14.01.2013, 17:30
Re: Suggestions Thread - by zgintasz - 14.01.2013, 17:45
Diorturato - by AirKite - 14.01.2013, 17:47
Re: Suggestions Thread - by Admigo - 14.01.2013, 21:27
Re: Suggestions Thread - by Mathers - 14.01.2013, 22:53
Re: Suggestions Thread - by SuperViper - 15.01.2013, 03:46
Re: Suggestions Thread - by davve95 - 15.01.2013, 06:47
Re: Suggestions Thread - by Travis The Tiger - 15.01.2013, 07:17
Re: Suggestions Thread - by RajatPawar - 15.01.2013, 07:25
Re: Suggestions Thread - by anybox - 15.01.2013, 07:34
Re: Suggestions Thread - by AirKite - 15.01.2013, 07:53
Re: Suggestions Thread - by Biesmen - 15.01.2013, 08:12
Re : Suggestions Thread - by lacalau33 - 15.01.2013, 09:11
Re: Suggestions Thread - by Lorenc_ - 15.01.2013, 09:31
Re: Suggestions Thread - by Kyle - 15.01.2013, 09:51
Re: Suggestions Thread - by Kyle - 15.01.2013, 10:00
Re: Suggestions Thread - by Biesmen - 15.01.2013, 10:09
Re: Suggestions Thread - by Jay_ - 15.01.2013, 10:12
Re: Suggestions Thread - by Admigo - 16.01.2013, 11:26
Re: Suggestions Thread - by beaz - 16.01.2013, 11:36
Re: Suggestions Thread - by eakwarp - 16.01.2013, 13:35
Re: Suggestions Thread - by TheArcher - 16.01.2013, 13:39
Re: Suggestions Thread - by leong124 - 16.01.2013, 15:07
Re: Suggestions Thread - by virt2323 - 16.01.2013, 15:46
Re: Suggestions Thread - by okil - 16.01.2013, 15:46
AW: Suggestions Thread - by Theo123 - 16.01.2013, 16:36
Re: Suggestions Thread - by [Saint] - 16.01.2013, 17:07
Re: AW: Suggestions Thread - by AirKite - 16.01.2013, 17:51
Re: Suggestions Thread - by Riddick94 - 17.01.2013, 13:10
Re: Suggestions Thread - by LeNy - 17.01.2013, 13:54
Re: Suggestions Thread - by leong124 - 17.01.2013, 14:30
Re: Suggestions Thread - by TomCool - 17.01.2013, 14:45
Re: Suggestions Thread - by Roman_Mikranov - 17.01.2013, 14:54
Re: Suggestions Thread - by LeNy - 17.01.2013, 17:31
Re: Suggestions Thread - by Sasino97 - 17.01.2013, 20:26
Re: Suggestions Thread - by Riddick94 - 17.01.2013, 20:49
Re: Suggestions Thread - by TheArcher - 17.01.2013, 21:59
Re: Suggestions Thread - by RenSoprano - 17.01.2013, 22:30
Re: Suggestions Thread - by Riddick94 - 17.01.2013, 22:50
Re: Suggestions Thread - by maxrobon1_police - 18.01.2013, 00:30
Re: Suggestions Thread - by maxrobon1_police - 18.01.2013, 00:32
Re: Suggestions Thread - by Essle - 18.01.2013, 01:26
Respuesta: Suggestions Thread - by spell - 18.01.2013, 02:38
Re: Suggestions Thread - by AirKite - 18.01.2013, 03:33
Re: Suggestions Thread - by Patrik356b - 18.01.2013, 05:33
Re: Suggestions Thread - by Stepashka - 18.01.2013, 05:43
Re: Suggestions Thread - by Luis- - 18.01.2013, 06:33
Re: Suggestions Thread - by Riddick94 - 18.01.2013, 06:39
Re: Suggestions Thread - by AirKite - 18.01.2013, 08:23
Re: Suggestions Thread - by QuaTTrO - 18.01.2013, 10:09
Re: Suggestions Thread - by Sasino97 - 18.01.2013, 12:24
Re: Suggestions Thread - by Akcent_Voltaj - 18.01.2013, 12:36
Re: Suggestions Thread - by thefatshizms - 18.01.2013, 16:45
Re: Suggestions Thread - by BeckzyBoi - 18.01.2013, 17:11
Re: Suggestions Thread - by Admigo - 18.01.2013, 18:01
AW: Suggestions Thread - by Elorreli - 18.01.2013, 18:54
Re: AW: Suggestions Thread - by pyrodojo25 - 18.01.2013, 19:01
Re: Suggestions Thread - by Admigo - 18.01.2013, 20:20
Re: Suggestions Thread - by Riddick94 - 18.01.2013, 20:35
Re: Suggestions Thread - by Admigo - 18.01.2013, 20:47
Re: Suggestions Thread - by Riddick94 - 18.01.2013, 21:56
Re: Suggestions Thread - by Kar - 18.01.2013, 21:59
Re: Suggestions Thread - by Dak_Cobain - 18.01.2013, 23:57
Re : Suggestions Thread - by Vukilore - 19.01.2013, 00:31
Re: Re : Suggestions Thread - by MP2 - 19.01.2013, 00:36
Re: Suggestions Thread - by niCe - 19.01.2013, 02:04
Re: Suggestions Thread - by ReDKiiL - 19.01.2013, 02:27
Re: Suggestions Thread - by Will77 - 19.01.2013, 06:54
Re: Suggestions Thread - by mineralo - 19.01.2013, 07:45
Re : Re: Suggestions Thread - by Vukilore - 19.01.2013, 10:42
Re: Suggestions Thread - by Edvin - 20.01.2013, 08:16
AW: Suggestions Thread - by BloodyEric - 20.01.2013, 10:43
Re: Suggestions Thread - by Kyle - 20.01.2013, 14:20
Re: Suggestions Thread - by zgintasz - 20.01.2013, 14:40
Re: Suggestions Thread - by Jear - 20.01.2013, 17:10
Re: Suggestions Thread - by zgintasz - 20.01.2013, 17:16
AW: Suggestions Thread - by [DFE]Ike - 20.01.2013, 23:58
Re: Suggestions Thread - by justinnater - 21.01.2013, 06:06
Re: AW: Suggestions Thread - by OKStyle - 21.01.2013, 06:20
Opinion of SA-MP, suggestion thread and few but good sugestions - by JavoDiaz - 21.01.2013, 08:20
Re: Suggestions Thread - by zgintasz - 21.01.2013, 12:25
Re: Suggestions Thread - by Windrush - 21.01.2013, 13:45
Re: Suggestions Thread - by ATomas - 21.01.2013, 14:19
Re: Suggestions Thread - by pasha97 - 21.01.2013, 14:42
Re: Suggestions Thread - by pasha97 - 21.01.2013, 15:00
Re: Suggestions Thread - by Edvin - 21.01.2013, 15:41
Re: Suggestions Thread - by [KHK]Khalid - 21.01.2013, 16:53
Re: Suggestions Thread - by GWMPT - 21.01.2013, 17:27
Re: Suggestions Thread - by IstuntmanI - 25.01.2013, 12:33
Re: Suggestions Thread - by QuaTTrO - 25.01.2013, 12:44
SendClientMessage - increase max cell size - by Dr.Einstein - 25.01.2013, 13:28
[No subject] - by Riddick94 - 25.01.2013, 13:49
Re: SendClientMessage - increase max cell size - by IstuntmanI - 25.01.2013, 13:55
Re: Suggestions Thread - by Riddick94 - 25.01.2013, 14:16
Re: Suggestions Thread - by Riddick94 - 25.01.2013, 15:30
Re: Suggestions Thread - by gabyk - 25.01.2013, 15:33
Re: Suggestions Thread - by Riddick94 - 25.01.2013, 15:41
Re: Suggestions Thread - by RayW - 25.01.2013, 17:31
Re: Suggestions Thread - by dugi - 25.01.2013, 17:44
Re: Suggestions Thread - by QuaTTrO - 25.01.2013, 18:10
Re : Suggestions Thread - by Vukilore - 25.01.2013, 19:19
AW: Suggestions Thread - by The501legion - 25.01.2013, 19:51
Re: Suggestions Thread - by HitnKill - 25.01.2013, 20:31
Re: Suggestions Thread - by Larceny - 25.01.2013, 23:36
Re: Suggestions Thread - by Kar - 26.01.2013, 01:32
Respuesta: Re: Suggestions Thread - by NeuZz - 26.01.2013, 02:58
AW: Suggestions Thread - by Skimmer - 26.01.2013, 09:12
Re: Suggestions Thread - by Exception - 26.01.2013, 11:04
Re: Suggestions Thread - by JaKe Elite - 26.01.2013, 11:30
Re: Suggestions Thread - by gabyk - 26.01.2013, 11:42
Re: Suggestions Thread - by QuaTTrO - 26.01.2013, 11:43
Re: Suggestions Thread - by JavoDiaz - 26.01.2013, 14:00
Re: Suggestions Thread - by scott1 - 26.01.2013, 14:10
Re: Suggestions Thread - by Toreno - 26.01.2013, 14:30
Re: Suggestions Thread - by pyrodojo25 - 26.01.2013, 14:33
Re: Suggestions Thread - by Danny - 26.01.2013, 14:53
Re: Suggestions Thread - by SDraw - 26.01.2013, 15:12
Re: Suggestions Thread - by Luis- - 26.01.2013, 17:09
Re: Suggestions Thread - by SchurmanCQC - 26.01.2013, 17:41
Re: Suggestions Thread - by CKA3KuH - 26.01.2013, 18:49
Re: Suggestions Thread - by ikkentim - 26.01.2013, 22:35
Re: Suggestions Thread - by MP2 - 26.01.2013, 23:16
Re: Suggestions Thread - by Stepashka - 27.01.2013, 07:55
Re : Suggestions Thread - by scott1 - 27.01.2013, 09:19
Re: Suggestions Thread - by [RsM]XpLoD - 27.01.2013, 12:06
Re: Suggestions Thread - by Riddick94 - 27.01.2013, 13:41
Re: Suggestions Thread - by MP2 - 27.01.2013, 13:50
Re: Suggestions Thread - by eakwarp - 27.01.2013, 13:58
Re: Suggestions Thread - by Infamous - 27.01.2013, 15:15
Re: Suggestions Thread - by mineralo - 27.01.2013, 16:04
Re: Suggestions Thread - by Finn - 27.01.2013, 16:49
Re: Suggestions Thread - by - Lukas! - 27.01.2013, 17:28
Re: Suggestions Thread - by Finn - 27.01.2013, 17:57
Re: Suggestions Thread - by Luis- - 29.01.2013, 15:05
Re : Suggestions Thread - by Nicow - 29.01.2013, 19:24
Re: Re : Suggestions Thread - by Kyle - 29.01.2013, 19:29
Re: Suggestions Thread - by CrazyChoco - 29.01.2013, 19:36
Re: Suggestions Thread - by sanya_gnoy - 29.01.2013, 19:50
Re: Suggestions Thread - by Mean - 29.01.2013, 20:15
Re: Suggestions Thread - by Admigo - 29.01.2013, 21:02
Re: Suggestions Thread - by Basssiiie - 29.01.2013, 21:24
Re: Suggestions Thread - by sanya_gnoy - 29.01.2013, 21:50
Re: Suggestions Thread - by iPLEOMAX - 29.01.2013, 21:56

Forum Jump:


Users browsing this thread: 1 Guest(s)