hlmod.hu
https://hlmod.hu/

Regisztrációs rendszer hiba!
https://hlmod.hu/viewtopic.php?f=9&t=9713
Oldal: 1 / 1

Szerző:  ChaspeR [ 2013.07.26. 10:38 ]
Hozzászólás témája:  Regisztrációs rendszer hiba!

L 07/26/2013 - 10:29:56: [AMXX] Run time error 10 (plugin "RegisterSystem.amxx") (native "SQL_ThreadQuery") - debug not enabled!

Most találkozok a log-ba legelőszőr ezzel a hibával... Mi lehet a probléma?! Eddig még nem jelezte ezt:S

Szerző:  Tomos [ 2013.07.26. 21:18 ]
Hozzászólás témája:  Re: Regisztrációs rendszer hiba!

chasper.cfg írta:
L 07/26/2013 - 10:29:56: [AMXX] Run time error 10 (plugin "RegisterSystem.amxx") (native "SQL_ThreadQuery") - debug not enabled!

Most találkozok a log-ba legelőszőr ezzel a hibával... Mi lehet a probléma?! Eddig még nem jelezte ezt:S


Ha debugolnád úgy a hibát is kiírná nem?

Szerző:  ChaspeR [ 2013.07.27. 11:07 ]
Hozzászólás témája:  Re: Regisztrációs rendszer hiba!

debuggoltam. ugyanúgy írja.

Szerző:  fuck604 [ 2013.07.29. 12:53 ]
Hozzászólás témája:  Re: Regisztrációs rendszer hiba!

ez biztos nincs debugolva és nem is írhatja ugyan ezt ha debugolva van..

Idézet:
L 07/26/2013 - 10:29:56: [AMXX] Run time error 10 (plugin "RegisterSystem.amxx") (native "SQL_ThreadQuery") - debug not enabled!

Szerző:  ChaspeR [ 2013.07.29. 13:53 ]
Hozzászólás témája:  Re: Regisztrációs rendszer hiba!

L 07/29/2013 - 13:42:10: [AMXX] Displaying debug trace (plugin "RegisterSystem.amxx")
L 07/29/2013 - 13:42:10: [AMXX] Run time error 25: parameter error
L 07/29/2013 - 13:42:10: [AMXX] [0] RegisterSystem.sma::KickPlayer (line 1313)
L 07/29/2013 - 13:44:13: [AMXX] Displaying debug trace (plugin "numbers.amxx")
L 07/29/2013 - 13:44:13: [AMXX] Run time error 4: index out of bounds
L 07/29/2013 - 13:44:13: [AMXX] [0] n8ik9a18.sma.p::zombie_countdown (line 42)

Szerző:  Tomos [ 2013.07.29. 14:05 ]
Hozzászólás témája:  Re: Regisztrációs rendszer hiba!

chasper.cfg írta:
L 07/29/2013 - 13:42:10: [AMXX] Displaying debug trace (plugin "RegisterSystem.amxx")
L 07/29/2013 - 13:42:10: [AMXX] Run time error 25: parameter error
L 07/29/2013 - 13:42:10: [AMXX] [0] RegisterSystem.sma::KickPlayer (line 1313)
L 07/29/2013 - 13:44:13: [AMXX] Displaying debug trace (plugin "numbers.amxx")
L 07/29/2013 - 13:44:13: [AMXX] Run time error 4: index out of bounds
L 07/29/2013 - 13:44:13: [AMXX] [0] n8ik9a18.sma.p::zombie_countdown (line 42)


A regisztrációs rendszer nekem is ugyanezt írja de még nem javította senki.

Szerző:  ChaspeR [ 2013.07.29. 15:03 ]
Hozzászólás témája:  Re: Regisztrációs rendszer hiba!

és esetleg a visszaszámláló pluginra valaki tudna megoldást? csatolom forrást:

SMA Forráskód: [ Mindet kijelol ]
  1. #include <amxmodx>
  2. #include <amxmisc>
  3. #include <zombieplague>
  4.  
  5. #define PLUGIN "[ZP] Szamok"
  6. #define VERSION "1.0"
  7. #define AUTHOR "Mr.Apple <--atirta magyarra Kittiam13:D"
  8.  
  9. new countdown
  10. new time_s
  11.  
  12. public plugin_init() {
  13. register_plugin(PLUGIN, VERSION, AUTHOR)
  14. register_event("HLTV", "event_round_start", "a", "1=0", "2=0")
  15. }
  16.  
  17. public plugin_precache()
  18. {
  19. precache_sound( "zp_extra_countdown_hungarian/ten.wav" )
  20. precache_sound( "zp_extra_countdown_hungarian/nine.wav" )
  21. precache_sound( "zp_extra_countdown_hungarian/eight.wav" )
  22. precache_sound( "zp_extra_countdown_hungarian/seven.wav" )
  23. precache_sound( "zp_extra_countdown_hungarian/six.wav" )
  24. precache_sound( "zp_extra_countdown_hungarian/five.wav" )
  25. precache_sound( "zp_extra_countdown_hungarian/four.wav" )
  26. precache_sound( "zp_extra_countdown_hungarian/three.wav" )
  27. precache_sound( "zp_extra_countdown_hungarian/two.wav" )
  28. precache_sound( "zp_extra_countdown_hungarian/one.wav" )
  29. }
  30.  
  31. public event_round_start()
  32. {
  33. set_task(4.0, "zombie_countdown")
  34. time_s = 10
  35. countdown = 9
  36. }
  37.  
  38. public zombie_countdown()
  39. {
  40. new speak[ 10 ][] = { "zp_extra_countdown_hungarian/one.wav", "zp_extra_countdown_hungarian/two.wav", "zp_extra_countdown_hungarian/three.wav", "zp_extra_countdown_hungarian/four.wav", "zp_extra_countdown_hungarian/five.wav", "zp_extra_countdown_hungarian/six.wav", "zp_extra_countdown_hungarian/seven.wav", "zp_extra_countdown_hungarian/eight.wav", "zp_extra_countdown_hungarian/nine.wav", "zp_extra_countdown_hungarian/ten.wav" }
  41.  
  42. emit_sound( 0, CHAN_VOICE, speak[ countdown ], 1.0, ATTN_NORM, 0, PITCH_NORM )
  43. countdown--
  44.  
  45. set_hudmessage(179, 0, 0, -1.0, 0.28, 2, 0.02, 1.0, 0.01, 0.1, 10);
  46. show_hudmessage(0, "Fertozesig hatravan: %i masodperc!", time_s);
  47. --time_s;
  48.  
  49. if(time_s >= 1)
  50. {
  51. set_task(1.0, "zombie_countdown")
  52. }
  53. }
  54.  

Oldal: 1 / 1 Minden időpont UTC+02:00 időzóna szerinti
Powered by phpBB® Forum Software © phpBB Limited
https://www.phpbb.com/