hlmod.hu
https://hlmod.hu/

Ultima_sounds
https://hlmod.hu/viewtopic.php?f=9&t=5968
Oldal: 1 / 1

Szerző:  pixxa112 [2012.09.14. 15:52 ]
Hozzászólás témája:  Ultima_sounds

Hali.

Ebben mi a hiba?

HIBA:
SMA Forráskód: [ Mindet kijelol ]
  1. /tmp/textiRzO5d.sma(1) : error 010: invalid function or declaration
  2. /tmp/textiRzO5d.sma(48) : error 037: invalid string (possibly non-terminated string)
  3. /tmp/textiRzO5d.sma(66) : error 010: invalid function or declaration
  4. /tmp/textiRzO5d.sma(109) : error 001: expected token: "}", but found "-string-"
  5. /tmp/textiRzO5d.sma(114) : error 054: unmatched closing brace
  6. /tmp/textiRzO5d.sma(147) : error 018: initialization data exceeds declared size
  7. /tmp/textiRzO5d.sma(328) : error 010: invalid function or declaration
  8. /tmp/textiRzO5d.sma(333) : error 010: invalid function or declaration
  9. /tmp/textiRzO5d.sma(338) : error 010: invalid function or declaration
  10. /tmp/textiRzO5d.sma(342) : error 021: symbol already defined: "q"
  11. /tmp/textiRzO5d.sma(348) : error 010: invalid function or declaration
  12. /tmp/textiRzO5d.sma(352) : error 021: symbol already defined: "q"
  13. /tmp/textiRzO5d.sma(358) : error 010: invalid function or declaration
  14. /tmp/textiRzO5d.sma(362) : error 021: symbol already defined: "q"
  15. /tmp/textiRzO5d.sma(368) : error 010: invalid function or declaration
  16. /tmp/textiRzO5d.sma(372) : error 021: symbol already defined: "q"
  17. /tmp/textiRzO5d.sma(378) : error 010: invalid function or declaration
  18. /tmp/textiRzO5d.sma(382) : error 021: symbol already defined: "q"
  19. /tmp/textiRzO5d.sma(388) : error 010: invalid function or declaration
  20. /tmp/textiRzO5d.sma(392) : error 021: symbol already defined: "q"
  21. /tmp/textiRzO5d.sma(555) : warning 203: symbol is never used: "q" 


SMA KÓD:
SMA Forráskód: [ Mindet kijelol ]
  1. AMXX.TRY.HU Forrás Megtekintés - www.sourcemod.hu - Plugin Megtekintése
  2.  
  3. #include <amxmodx>
  4. #include <amxmisc>
  5.  
  6. #define PLUGIN_NAME "Ultimate KillStreak Advanced"
  7. #define PLUGIN_VERSION "1.0"
  8. #define PLUGIN_AUTHOR "Dizzy"
  9.  
  10.  
  11. new lastman_mode;
  12. new alone_ann = 0;
  13. new kills[61] = {0,...};
  14. new deaths[61] = {0,...};
  15. new kill[31][24];
  16.  
  17. #define LEVELS 13
  18. #define hsounds 12
  19. #define knsounds 4
  20. #define prpsounds 8
  21. #define maxdbsounds 2
  22. #define TASK_CLEAR_KILL 100
  23.  
  24. new hsenable
  25. new knifeenable
  26. new cvardouble
  27. new rnstartcvar
  28. new killstreaktype
  29.  
  30.  
  31. new levels[13] = {2,3,4,5,6,7,8,9,10,11,12,13,14};
  32.  
  33. new sounds[31][] =
  34. {
  35. "sound/kill_sounds/combowhore",
  36. "sound/kill_sounds/firstblood1",
  37. "sound/kill_sounds/firstblood1_ultimate",
  38. "sound/kill_sounds/firstblood2",
  39. "sound/kill_sounds/firstblood2_ultimate",
  40. "sound/kill_sounds/holyshit_ultimate",
  41. "sound/kill_sounds/killingspree",
  42. "sound/kill_sounds/killingspree_ultimate",
  43. "sound/kill_sounds/ludicrouskill_ultimate",
  44. "sound/kill_sounds/megakill",
  45. "sound/kill_sounds/megakill_ultimate",
  46. "sound/kill_sounds/monsterkill",
  47. "sound/kill_sounds/monsterkill_ultimate",
  48. "sound/kill_sounds/multikill_ultimate",
  49. "sound/kill_sounds/nade",
  50. "sound/kill_sounds/nade_ultimate",
  51. "sound/kill_sounds/rampage",
  52. "sound/kill_sounds/rampage_ultimate",
  53. "sound/kill_sounds/suicide1",
  54. "sound/kill_sounds/suicide1_ultimate",
  55. "sound/kill_sounds/suicide2",
  56. "sound/kill_sounds/suicide2_ultimate",
  57. "sound/kill_sounds/suicide3",
  58. "sound/kill_sounds/suicide3_ultimate",
  59. "sound/kill_sounds/suicide4",
  60. "sound/kill_sounds/suicide4_ultimate",
  61. "sound/kill_sounds/triplekill_ultimate",
  62. "sound/kill_sounds/ultrakill",
  63. "sound/kill_sounds/ultrakill_ultimate",
  64. "sound/kill_sounds/unstoppable",
  65. "sound/kill_sounds/unstoppable_ultimate"
  66. };
  67.  
  68. new messages[13][] =
  69. {
  70. "%s: 1.szint: 3 kill Tripla Kill !!!",
  71. "%s: 2.szint: 4 kill Multi Kill !!!",
  72. "%s: 3.szint: 5 kill Ultra Kill !!!",
  73. "%s: 4 szint: 6 kill Mega Kill !!!",
  74. "%s: 5.szint: 8 kill Tombol !!!",
  75. "%s: 6.szint: 9 kill Gyilkologe'p !!! ",
  76. "%s: 7.szint: 10 kill Hihetetlen !!!",
  77. "%s: 8.szint: 11 kill Szornyeteg !!!",
  78. "%s: 9.szint: 12 kill Szent szar !!!",
  79. "%s: 10.szint: 13 kill Isteni !!!",
  80. "%s: +11 szint: 15 kill Isten vagy !!!",
  81. "%s: +12 szint: 18 kill Legyozhetetlen !!!",
  82. "%s: +13 szint: 20 kill Kiraly vagy !!!"
  83. };
  84.  
  85. new hslist[hsounds][] =
  86. {
  87. "sound/kill_sounds/headshot1",
  88. "sound/kill_sounds/headshot1_ultimate",
  89. "sound/kill_sounds/headshot2.wav",
  90. "sound/kill_sounds/headshot2_ultimate",
  91. "sound/kill_sounds/headhunter",
  92. "sound/kill_sounds/hs10",
  93. "sound/kill_sounds/hs12",
  94. "sound/kill_sounds/hs5",
  95. "sound/kill_sounds/hs9",
  96. "sound/kill_sounds/hs8",
  97. "sound/kill_sounds/headshot",
  98. "sound/kill_sounds/headshot5"
  99.  
  100. }
  101.  
  102.  
  103. new preplist[prpsounds][]=
  104. {
  105. "sound/kill_sounds/prepare1",
  106. "sound/kill_sounds/prepare1_ultimate",
  107. "sound/kill_sounds/prepare2",
  108. "sound/kill_sounds/prepare2_ultimate"
  109. "sound/kill_sounds/prepare3",
  110. "sound/kill_sounds/prepare3_ultimate",
  111. "sound/kill_sounds/prepare4",
  112. "sound/kill_sounds/payback"
  113.  
  114. }
  115.  
  116.  
  117.  
  118.  
  119.  
  120. new hsmessages[4][]=
  121. {
  122. "%s leszedte %s fejet !!",
  123. "%s hihetetlen fejest adott %s-nak !",
  124. "%s -tol kapott egy gyonyoru HEADSHOT-ot %s!",
  125. "%s adott %s -nek egy super headshotot !"
  126. }
  127.  
  128. new knlist[knsounds][]=
  129. {
  130. "sound/kill_sounds/knife1",
  131. "sound/kill_sounds/knife1_ultimate",
  132. "sound/kill_sounds/knife2",
  133. "sound/kill_sounds/knife2_ultimate"
  134. }
  135.  
  136. new knmessages[3][]=
  137. {
  138. "%s ledofte %s",
  139. "%s felszabdalta a kesevel %s",
  140. "%s lekeselte %s"
  141. }
  142.  
  143.  
  144. new doublelist[maxdbsounds][]=
  145. {
  146. "sound/kill_sounds/doublekill1",
  147. "sound/kill_sounds/doublekill1_ultimate",
  148. "sound/kill_sounds/doublekill2",
  149. "sound/kill_sounds/doublekill2_ultimate"
  150. }
  151.  
  152. new messagesnohp[5][]=
  153. {
  154.  
  155. "%i terrorist vs %i CT^n%s: Szamitunk rad haver el ne baszd!",
  156. "%i terrorist vs %i CT^n%s: Remelem van nalad eletmento csomag",
  157. "%i terrorist vs %i CT^n%s: Kinyirtak a csaptarsaid.Sok szerencset!",
  158. "%i terrorist vs %i CT^n%s: Te vagy az utolso remenyunk!",
  159. "%i terrorist vs %i CT^n%s: Most egyedul vagy.Jo szorakozast!"
  160. }
  161.  
  162. new messageshp[5][]=
  163. {
  164.  
  165. "%i terrorist vs %i CT^n%s (%i hp): Szamitunk rad haver el ne baszd!",
  166. "%i terrorist vs %i CT^n%s (%i hp): Remelem van nalad eletmento csomag",
  167. "%i terrorist vs %i CT^n%s (%i hp): Kinyirtak a csaptarsaid.Sok szerencset!",
  168. "%i terrorist vs %i CT^n%s (%i hp): Te vagy az utolso remenyunk!",
  169. "%i terrorist vs %i CT^n%s (%i hp): Most egyedul vagy.Jo szorakozast!"
  170.  
  171. }
  172.  
  173. is_mode_set(bits) {
  174. new mode[9];
  175. get_cvar_string("ut_killstreak_advanced", mode, 8);
  176. return read_flags(mode) & bits;
  177. }
  178.  
  179. public plugin_init() {
  180. register_plugin(PLUGIN_NAME, PLUGIN_VERSION, PLUGIN_AUTHOR);
  181. killstreaktype = register_cvar("ut_killstreak_advanced", "3");
  182. register_event("ResetHUD", "reset_hud", "b");
  183. register_event("HLTV","rnstart","a", "1=0", "2=0");
  184. register_event("DeathMsg", "event_death", "a");
  185. hsenable = register_cvar("ut_killstreak_hs","1");
  186. knifeenable = register_cvar("ut_killstreak_knife","1");
  187. cvardouble = register_cvar("ut_doublekill_events","1");
  188. rnstartcvar = register_cvar("ut_roundcout_sounds","1");
  189. register_event("DeathMsg","death_msg","a");
  190. register_event("SendAudio","roundend_msg","a","2=%!MRAD_terwin","2=%!MRAD_ctwin","2=%!MRAD_rounddraw");
  191. register_event("TextMsg","roundend_msg","a","2&#Game_C","2&#Game_w");
  192. lastman_mode = register_cvar("lastman_mode","abc")
  193.  
  194. return PLUGIN_CONTINUE;
  195. }
  196.  
  197.  
  198. public event_death(id) {
  199. new killer = read_data(1);
  200. new victim = read_data(2);
  201. new headshot = read_data(3);
  202. new weapon[24], vicname[32], killname[32]
  203. read_data(4,weapon,23)
  204. get_user_name(victim,vicname,31)
  205. get_user_name(killer,killname,31)
  206.  
  207.  
  208.  
  209. if(headshot == 1 && get_pcvar_num(hsenable) ==1)
  210. {
  211. set_hudmessage(255, 255, 255, -1.0, 0.25, 0, 2.0, 2.0)
  212. show_hudmessage(0, (hsmessages[random_num(0,3)]), killname, vicname)
  213. new i
  214. i = random_num(0,hsounds-1)
  215. client_cmd(0,"mp3 play %s",hslist[i])
  216. }
  217.  
  218.  
  219. if(weapon[0] == 'k' && get_pcvar_num(knifeenable) ==1)
  220. {
  221. set_hudmessage(255, 204, 0, -1.0, 0.25, 0, 2.0, 2.0)
  222. show_hudmessage(0, (knmessages[random_num(0,2)]), killname, vicname)
  223. new r
  224. r = random_num(0,knsounds-1)
  225. client_cmd(0,"mp3 play %s",knlist[r])
  226. }
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233. if(kill[killer][0] && equal(kill[killer],weapon) && get_pcvar_num(cvardouble) == 1)
  234. {
  235. set_hudmessage(51, 255, 0, -1.0, 0.25, 0, 2.0, 2.0)
  236. show_hudmessage(0,"OMG %s Szep Dupla oles", killname)
  237. kill[killer][0] = 0;
  238. new q
  239. q= random_num(0,maxdbsounds-1)
  240. client_cmd(0,"mp3 play %s",doublelist[q])
  241. }
  242.  
  243. else
  244. {
  245. kill[killer] = weapon;
  246. set_task(0.1,"clear_kill",TASK_CLEAR_KILL+killer);
  247. }
  248.  
  249.  
  250.  
  251. kills[killer] += 1;
  252. kills[victim] = 0;
  253. deaths[killer] = 0;
  254. deaths[victim] += 1;
  255.  
  256. for (new i = 0; i < LEVELS; i++)
  257. {
  258. if (kills[killer] == levels[i])
  259. {
  260. announce(killer, i);
  261. return PLUGIN_CONTINUE;
  262. }
  263. }
  264.  
  265. return PLUGIN_CONTINUE;
  266. }
  267.  
  268. announce(killer, level)
  269. {
  270.  
  271. new name[33]
  272.  
  273. get_user_name(killer, name, 32);
  274. set_hudmessage( 255, 0, 255, 0.05, 0.65, 0, 3.0, 3.0, 0.01, 0.1, 2);
  275.  
  276. if( (get_pcvar_num(killstreaktype) <= 0 ) || get_pcvar_num(killstreaktype) > 3)
  277. return PLUGIN_HANDLED;
  278.  
  279.  
  280.  
  281. if(get_pcvar_num(killstreaktype) == 1)
  282. {
  283. show_hudmessage(0, messages[level], name);
  284. }
  285.  
  286. if(get_pcvar_num(killstreaktype) == 2)
  287. {
  288. client_cmd(0, "mp3 play %s", sounds[level]);
  289. }
  290.  
  291. if(get_pcvar_num(killstreaktype) == 3)
  292. {
  293. show_hudmessage(0, messages[level], name);
  294. client_cmd(0, "mp3 play %s", sounds[level]);
  295. }
  296.  
  297. return PLUGIN_CONTINUE;
  298.  
  299. }
  300.  
  301.  
  302. public reset_hud(id)
  303. {
  304. if (is_mode_set(16)) {
  305. if (kills[id] > levels[0]) {
  306. client_print(id, print_chat,
  307. "* Egymas utan %d oles ", kills[id]);
  308. } else if (deaths[id] > 1) {
  309. client_print(id, print_chat,
  310. "* Ma'r %d halalod volt egymas utan.", deaths[id]);
  311.  
  312. }
  313. }
  314. }
  315.  
  316. public rnstart(id)
  317. {
  318. if(get_pcvar_num(rnstartcvar) == 1)
  319. {
  320. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  321. show_hudmessage(0, "[KESZULJ FEL SOK SIKERT !!]")
  322. new q
  323. q = random_num(0,prpsounds-1)
  324. client_cmd(0,"mp3 play %s",preplist[q])
  325. }
  326. }
  327.  
  328. if(get_pcvar_num(rnstartcvar) == 2){
  329. {
  330. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  331. show_hudmessage(0, "[KESZULJETEK, FEGYVERT ELO !!]")
  332. new q
  333. q = random_num(0,prpsounds-2)
  334. client_cmd(0,"mp3 play %s",preplist[q])
  335. }
  336. }
  337.  
  338. if(get_pcvar_num(rnstartcvar) == 3){
  339. {
  340. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  341. show_hudmessage(0, "[INDULJATOK OLDOKOLNI !!]")
  342. new q
  343. q = random_num(0,prpsounds-3)
  344. client_cmd(0,"mp3 play %s",preplist[q])
  345. }
  346. }
  347.  
  348. if(get_pcvar_num(rnstartcvar) == 4){
  349. {
  350. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  351. show_hudmessage(0, "[INDULAS, PLAY !!]")
  352. new q
  353. q = random_num(0,prpsounds-3)
  354. client_cmd(0,"mp3 play %s",preplist[q])
  355. }
  356. }
  357.  
  358. if(get_pcvar_num(rnstartcvar) == 5){
  359. {
  360. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  361. show_hudmessage(0, "[SOK SZOKERT SZURKOLUNK NEKED !!]")
  362. new q
  363. q = random_num(0,prpsounds-3)
  364. client_cmd(0,"mp3 play %s",preplist[q])
  365. }
  366. }
  367.  
  368. if(get_pcvar_num(rnstartcvar) == 6){
  369. {
  370. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  371. show_hudmessage(0, "[VIGYAZZ MAGADRA, PROBALD TUL ELNI !!]")
  372. new q
  373. q = random_num(0,prpsounds-3)
  374. client_cmd(0,"mp3 play %s",preplist[q])
  375. }
  376. }
  377.  
  378. if(get_pcvar_num(rnstartcvar) == 7){
  379. {
  380. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  381. show_hudmessage(0, "[KIRALY JON EGY UJABB KILL KOR !!]")
  382. new q
  383. q = random_num(0,prpsounds-3)
  384. client_cmd(0,"mp3 play %s",preplist[q])
  385. }
  386. }
  387.  
  388. if(get_pcvar_num(rnstartcvar) == 8){
  389. {
  390. set_hudmessage(204, 0, 255, -1.0, 0.30, 0, 6.0, 6.0)
  391. show_hudmessage(0, "[KESZULJ FEL A HARCRA !!]")
  392. new q
  393. q = random_num(0,prpsounds-3)
  394. client_cmd(0,"mp3 play %s",preplist[q])
  395. }
  396. }
  397.  
  398. public client_connect(id) {
  399. kills[id] = 0;
  400. deaths[id] = 0;
  401. }
  402.  
  403. public clear_kill(taskid)
  404. {
  405. new id = taskid-TASK_CLEAR_KILL;
  406. kill[id][0] = 0;
  407. }
  408.  
  409. public roundend_msg(id)
  410.  
  411. alone_ann = 0
  412.  
  413. public death_msg(id)
  414. {
  415.  
  416. new lmmode[8]
  417. get_pcvar_string(lastman_mode,lmmode,8)
  418. new lmmode_bit = read_flags(lmmode)
  419.  
  420. new players_ct[32], players_t[32], ict, ite, last
  421. get_players(players_ct,ict,"ae","CT")
  422. get_players(players_t,ite,"ae","TERRORIST")
  423.  
  424. if (ict==1&&ite==1)
  425. {
  426. new name1[32], name2[32]
  427. get_user_name(players_ct[0],name1,32)
  428. get_user_name(players_t[0],name2,32)
  429. set_hudmessage(0, 255, 0, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 1)
  430.  
  431. if (lmmode_bit & 1)
  432. {
  433. if (lmmode_bit & 2)
  434. {
  435. show_hudmessage(0,"%s (%i hp) vs. %s (%i hp)",name1,get_user_health(players_ct[0]),name2,get_user_health(players_t[0]))
  436. }
  437.  
  438. else
  439. {
  440. show_hudmessage(0,"%s vs. %s",name1,name2)
  441. }
  442.  
  443. if (lmmode_bit & 4)
  444. {
  445. for(new i=1;i<=get_maxplayers();i++)
  446. if( is_user_connected(i) == 1 )
  447. client_cmd(i,"mp3 play sound/kill_sounds/maytheforce")
  448. }
  449. }
  450. }
  451. else
  452. {
  453. if (ict==1&&ite>1&&alone_ann==0&&(lmmode_bit & 4))
  454. {
  455. last=players_ct[0]
  456. client_cmd(last,"mp3 play sound/kill_sounds/oneandonly")
  457.  
  458. }
  459.  
  460. else if (ite==1&&ict>1&&alone_ann==0&&(lmmode_bit & 4))
  461. {
  462. last=players_t[0]
  463. client_cmd(last,"mp3 play sound/kill_sounds/oneandonly")
  464. }
  465.  
  466. else
  467. {
  468. return PLUGIN_CONTINUE
  469. }
  470. alone_ann = last
  471. new name[32]
  472. get_user_name(last,name,32)
  473.  
  474. if (lmmode_bit & 1)
  475. {
  476. set_hudmessage(0, 255, 0, -1.0, 0.30, 0, 6.0, 6.0, 0.5, 0.15, 1)
  477.  
  478. if (lmmode_bit & 2)
  479. {
  480. show_hudmessage(0, messageshp[ random_num(0,5) ],ite ,ict ,name,get_user_health(last))
  481. }
  482.  
  483. else
  484. {
  485. show_hudmessage(0, messagesnohp[ random_num(0,5) ],ite ,ict ,name )
  486. }
  487. }
  488.  
  489. }
  490. return PLUGIN_CONTINUE
  491. }
  492. public plugin_precache()
  493. {
  494. precache_sound("kill_sounds/combowhore.wav")
  495. precache_sound("kill_sounds/doublekill1.wav")
  496. precache_sound("kill_sounds/doublekill1_ultimate.wav")
  497. precache_sound("kill_sounds/doublekill2.wav")
  498. precache_sound("kill_sounds/doublekill2_ultimate.wav")
  499. precache_sound("kill_sounds/firstblood1.wav")
  500. precache_sound("kill_sounds/firstblood1_ultimate.wav")
  501. precache_sound("kill_sounds/firstblood2.wav")
  502. precache_sound("kill_sounds/firstblood2_ultimate.wav")
  503. precache_sound("kill_sounds/headshot1.wav")
  504. precache_sound("kill_sounds/headshot1_ultimate.wav")
  505. precache_sound("kill_sounds/headshot2.wav")
  506. precache_sound("kill_sounds/headshot2_ultimate.wav")
  507. precache_sound("kill_sounds/headhunter.wav")
  508. precache_sound("kill_sounds/headshot.wav")
  509. precache_sound("kill_sounds/headshot5.wav")
  510. precache_sound("kill_sounds/hs10.wav")
  511. precache_sound("kill_sounds/hs12.wav")
  512. precache_sound("kill_sounds/hs5.wav")
  513. precache_sound("kill_sounds/hs8.wav")
  514. precache_sound("kill_sounds/hs9.wav")
  515. precache_sound("kill_sounds/killingspree.wav")
  516. precache_sound("kill_sounds/killingspree_ultimate.wav")
  517. precache_sound("kill_sounds/knife1.wav")
  518. precache_sound("kill_sounds/knife1_ultimate.wav")
  519. precache_sound("kill_sounds/knife2.wav")
  520. precache_sound("kill_sounds/knife2_ultimate.wav")
  521. precache_sound("kill_sounds/ludicrouskill.wav")
  522. precache_sound("kill_sounds/ludicrouskill_ultimate.wav")
  523. precache_sound("kill_sounds/megakill.wav")
  524. precache_sound("kill_sounds/megakill_ultimate.wav")
  525. precache_sound("kill_sounds/monsterkill.wav")
  526. precache_sound("kill_sounds/monsterkill_ultimate.wav")
  527. precache_sound("kill_sounds/multikill.wav")
  528. precache_sound("kill_sounds/multikill_ultimate.wav")
  529. precache_sound("kill_sounds/nade.wav")
  530. precache_sound("kill_sounds/nade_ultimate.wav")
  531. precache_sound("kill_sounds/oneandonly.wav")
  532. precache_sound("kill_sounds/payback.wav")
  533. precache_sound("kill_sounds/prepare1.wav")
  534. precache_sound("kill_sounds/prepare1_ultimate.wav")
  535. precache_sound("kill_sounds/prepare2.wav")
  536. precache_sound("kill_sounds/prepare2_ultimate.wav")
  537. precache_sound("kill_sounds/prepare3.wav")
  538. precache_sound("kill_sounds/prepare3_ultimate.wav")
  539. precache_sound("kill_sounds/prepare4.wav")
  540. precache_sound("kill_sounds/rampage.wav")
  541. precache_sound("kill_sounds/rampage_ultimate.wav")
  542. precache_sound("kill_sounds/suicide1.wav")
  543. precache_sound("kill_sounds/suicide1_ultimate.wav")
  544. precache_sound("kill_sounds/suicide2.wav")
  545. precache_sound("kill_sounds/suicide2_ultimate.wav")
  546. precache_sound("kill_sounds/suicide3.wav")
  547. precache_sound("kill_sounds/suicide3_ultimate.wav")
  548. precache_sound("kill_sounds/suicide4.wav")
  549. precache_sound("kill_sounds/suicide4_ultimate.wav")
  550. precache_sound("kill_sounds/triplekill_ultimate.wav")
  551. precache_sound("kill_sounds/ultrakill.wav")
  552. precache_sound("kill_sounds/ultrakill_ultimate.wav")
  553. precache_sound("kill_sounds/unstoppable.wav")
  554. precache_sound("kill_sounds/unstoppable_ultimate.wav")
  555. }

Szerző:  pixxa112 [2012.09.17. 22:50 ]
Hozzászólás témája:  Re: Ultima_sounds

Nem tudja senki sem kijavítani?? :S Fontos :D

Szerző:  DeteCT0R [2012.09.18. 13:49 ]
Hozzászólás témája:  Re: Ultima_sounds

Ott irja a logba mi a hiba:)
Ha enyire nemtudom mivagy akkor nevard hogy fognak irni=)
Amugy Metal mondta regebb az ilyeneket mar illet volna megtanulni:)

Szerző:  norbee.16 [2012.09.18. 13:57 ]
Hozzászólás témája:  Re: Ultima_sounds

igaza van detnek, miota is vagy forumon? (én kb 7hónapja vagyok is tudom javítani az ilyeneket, meg ott írja a hibás sorokat.)

Szerző:  Bence98007 [2012.09.18. 16:28 ]
Hozzászólás témája:  Re: Ultima_sounds

"q" index nincs definiálva sztem. Amúgymeg 99 sortól újraszámolja? :o

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