Jump to content

Jakub Kučera

Uživatel
  • Příspěvků

    426
  • Registrován

  • Aktivní

  • Vítězných dnů

    1

Everything posted by Jakub Kučera

  1. #include <a_samp> #include <zcmd> #define COLOR_BLACK 0x000000AA #define COLOR_RED 0xAA3333AA #define COLOR_YELLOW 0xFFFF00AA #define COLOR_BLUE 0x0000BBAA #define COLOR_WHITE 0xFFFFFFAA #define COLOR_LIGHTBLUE 0x33CCFFAA #define COLOR_INDIGO 0x4B00B0AA #define COLOR_DARKYELLOW 0xE5E52BAA #define COLOR_GREEN 0x33AA33AA CMD:neon(playerid,params[]) { #pragma unused params GivePlayerMoney(playerid,-500); SendClientMessage(playerid, COLOR_RED, "Your 500 Rupees Have Been Taken By Using The Command"); ShowPlayerDialog(playerid, 45, DIALOG_STYLE_MSGBOX, "Neon System Commands", "/blue , /red , /green , /white , /pink , /yellow , /removeneon", "THANKS", "NOPE"); return 1; } CMD:blue(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon", CreateObject(18648,0,0,0,0,0,0)); SetPVarInt(playerid, "neon1", CreateObject(18648,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon1"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_BLUE, "Neon Installed"); return 1; } CMD:red(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon2", CreateObject(18647,0,0,0,0,0,0)); SetPVarInt(playerid, "neon3", CreateObject(18647,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon2"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon3"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_RED, "Neon Installed"); return 1; } CMD:green(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon4", CreateObject(18649,0,0,0,0,0,0)); SetPVarInt(playerid, "neon5", CreateObject(18649,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon4"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon5"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_GREEN, "Neon Installed"); return 1; } CMD:white(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon6", CreateObject(18652,0,0,0,0,0,0)); SetPVarInt(playerid, "neon7", CreateObject(18652,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon6"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon7"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_WHITE, "Neon Installed"); return 1; } CMD:pink(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon8", CreateObject(18651,0,0,0,0,0,0)); SetPVarInt(playerid, "neon9", CreateObject(18651,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon8"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon9"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_WHITE, "Neon Installed"); return 1; } CMD:yellow(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon10", CreateObject(18650,0,0,0,0,0,0)); SetPVarInt(playerid, "neon11", CreateObject(18650,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon10"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon11"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_YELLOW, "Neon Installed"); return 1; } CMD:fire(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon10", CreateObject(14443,0,0,0,0,0,0)); SetPVarInt(playerid, "neon11", CreateObject(14443,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon11"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon12"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_RED, "Neon Installed"); return 1; } CMD:removeneon(playerid,params[]) { #pragma unused params DestroyObject(GetPVarInt(playerid, "neon")); DestroyObject(GetPVarInt(playerid, "neon1")); DestroyObject(GetPVarInt(playerid, "neon2")); DestroyObject(GetPVarInt(playerid, "neon3")); DestroyObject(GetPVarInt(playerid, "neon4")); DestroyObject(GetPVarInt(playerid, "neon5")); DestroyObject(GetPVarInt(playerid, "neon6")); DestroyObject(GetPVarInt(playerid, "neon7")); DestroyObject(GetPVarInt(playerid, "neon8")); DestroyObject(GetPVarInt(playerid, "neon9")); DestroyObject(GetPVarInt(playerid, "neon10")); DestroyObject(GetPVarInt(playerid, "neon11")); DestroyObject(GetPVarInt(playerid, "neon12")); DestroyObject(GetPVarInt(playerid, "neon13")); DeletePVar(playerid, "Status"); SendClientMessage(playerid, COLOR_YELLOW, "All Neon Removed"); return 1; } Takhle mi to FS nenačte Prostě napíše, že bylo načteno 5 FS, když v Configu jich mam 6
  2. Možná proto, že to bez tich callbacků nefunguje ?
  3. Tak to je teda blbost To tam být nemusí, já to nepoužívám a funguje mi to #include <a_samp> //#define FILTERSCRIPT //toto... netreba tu byť ak je to FS viz. samp fórum official téma #include <zcmd> #define COLOR_BLACK 0x000000AA #define COLOR_RED 0xAA3333AA #define COLOR_YELLOW 0xFFFF00AA #define COLOR_BLUE 0x0000BBAA #define COLOR_WHITE 0xFFFFFFAA #define COLOR_LIGHTBLUE 0x33CCFFAA #define COLOR_INDIGO 0x4B00B0AA #define COLOR_DARKYELLOW 0xE5E52BAA #define COLOR_GREEN 0x33AA33AA public OnFilterScriptInit() { print("\n--------------------------------------"); print(" ---------- Neony [By Autor] -----------"); print("--------------------------------------\n"); return 1; } public OnFilterScriptExit() { return 1; } CMD:neon(playerid,params[]) { #pragma unused params GivePlayerMoney(playerid,-500); SendClientMessage(playerid, COLOR_RED, "Your 500 Rupees Have Been Taken By Using The Command"); ShowPlayerDialog(playerid, 45, DIALOG_STYLE_MSGBOX, "Neon System Commands", "/blue , /red , /green , /white , /pink , /yellow , /removeneon", "THANKS", "NOPE"); return 1; } CMD:blue(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon", CreateObject(18648,0,0,0,0,0,0)); SetPVarInt(playerid, "neon1", CreateObject(18648,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon1"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_BLUE, "Neon Installed"); return 1; } CMD:red(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon2", CreateObject(18647,0,0,0,0,0,0)); SetPVarInt(playerid, "neon3", CreateObject(18647,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon2"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon3"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_RED, "Neon Installed"); return 1; } CMD:green(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon4", CreateObject(18649,0,0,0,0,0,0)); SetPVarInt(playerid, "neon5", CreateObject(18649,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon4"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon5"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_GREEN, "Neon Installed"); return 1; } CMD:white(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon6", CreateObject(18652,0,0,0,0,0,0)); SetPVarInt(playerid, "neon7", CreateObject(18652,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon6"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon7"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_WHITE, "Neon Installed"); return 1; } CMD:pink(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon8", CreateObject(18651,0,0,0,0,0,0)); SetPVarInt(playerid, "neon9", CreateObject(18651,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon8"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon9"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_WHITE, "Neon Installed"); return 1; } CMD:yellow(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon10", CreateObject(18650,0,0,0,0,0,0)); SetPVarInt(playerid, "neon11", CreateObject(18650,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon10"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon11"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_YELLOW, "Neon Installed"); return 1; } CMD:fire(playerid,params[]) { #pragma unused params SetPVarInt(playerid, "neon10", CreateObject(14443,0,0,0,0,0,0)); SetPVarInt(playerid, "neon11", CreateObject(14443,0,0,0,0,0,0)); AttachObjectToVehicle(GetPVarInt(playerid, "neon11"), GetPlayerVehicleID(playerid), -0.8, 0.0, -0.70, 0.0, 0.0, 0.0); AttachObjectToVehicle(GetPVarInt(playerid, "neon12"), GetPlayerVehicleID(playerid), 0.8, 0.0, -0.70, 0.0, 0.0, 0.0); SendClientMessage(playerid, COLOR_RED, "Neon Installed"); return 1; } CMD:removeneon(playerid,params[]) { #pragma unused params DestroyObject(GetPVarInt(playerid, "neon")); DestroyObject(GetPVarInt(playerid, "neon1")); DestroyObject(GetPVarInt(playerid, "neon2")); DestroyObject(GetPVarInt(playerid, "neon3")); DestroyObject(GetPVarInt(playerid, "neon4")); DestroyObject(GetPVarInt(playerid, "neon5")); DestroyObject(GetPVarInt(playerid, "neon6")); DestroyObject(GetPVarInt(playerid, "neon7")); DestroyObject(GetPVarInt(playerid, "neon8")); DestroyObject(GetPVarInt(playerid, "neon9")); DestroyObject(GetPVarInt(playerid, "neon10")); DestroyObject(GetPVarInt(playerid, "neon11")); DestroyObject(GetPVarInt(playerid, "neon12")); DestroyObject(GetPVarInt(playerid, "neon13")); DeletePVar(playerid, "Status"); SendClientMessage(playerid, COLOR_YELLOW, "All Neon Removed"); return 1; } Toto je dost postatné a musí to tam být public OnFilterScriptInit() { print("\n--------------------------------------"); print(" ---------- Neony [By Autor] -----------"); print("--------------------------------------\n"); return 1; } public OnFilterScriptExit() { return 1; } Jako Pawner by jsi to měl vědět
  4. Zatím nie Mám tam chybu a po čtvrt hodině mi server spadne
  5. Stačí ti tento ? http://pastebin.com/KwP8NCQL (Includ seženeš zde http://www.expert.papoera.eu/pawno/ExCmd.inc a vložíš v pawnu do složky include) Nebylo to nic těžkého, udělat pár příkazů a vyhledat si objekty
  6. Jakub Kučera

    script Okruh by Karel12

    Celkem pěkné, dávám 4/10 za snahu, ale objekty mohly být lépe zpracované a nemusely být použity zrovna ty vojenské věže a také to mohlo být oplocené.
  7. public OnPlayerDisconnect(playerid, reason) { for(new i;i<sizeof(Auta[]);i++) { if(Auta[playerid][i] > 0) { DestroyVehicle(Auta[playerid][i]); Auta[playerid][i] = 0; } } return 1; }
  8. Jakub Kučera

    script Počasí

    Co já vím tak je to setplayerweather - To není pro všechny
  9. Jakub Kučera

    script Počasí

    Počasí 1.0 Chci vám tu prezentovat svůj nový FS, který jsem udělal dnes ráno, když jsem se nudil. Jak již vyplývá z názvu, je to script o počasí. Tento FS obsahuje 5 základních typů počasí (Slunečno, Deštivo, Zataženo, Mlha, Písečná Bouře. A navíc tento Script obsahuje i funkci náhodného počasí. (Změna počasí každé 3 minuty [Lze zapnout i Vypnout] ) Tady je odkaz na můj Pastebin A tady je na Pawno.cz (Schváleno) Prosím hodnoťte 0/10 (Sám se hodnotím na 5/10, protože jsem tam dal jen 5 typů počasí z 20)
  10. No tak promiň, ale mě zmátlo to, že ty tam máš 30 příkazů a on jenom 24, ale to bude asi tím, že je to mnohem starší verze než ta tvoje, tak promiň
  11. Jak víš, že to je tvůj VIP systém, když jsi jako tady všichni neviděl jeho PWN? A ten co to dělal, z toho musel odstranit nejméně půlku funkcí S tím Qwerovo mi to padá vždycky, ale to co jsme ti poslali, mi nikdy nepadalo Nevím čím to Kolik máš FS?
  12. Jn, jelikož jsem mu dělal web, tak to vím A navíc mu Pekusis poslal odkaz na stáhnutí, kvůli kterému musí být přihlášen Tu přímý odkaz na Johhnyho File Hosting
  13. Tak to znám, ale měl jsem od něj AMX, teď už ho nemám a nemůžu si na autora vzpomenout. //Edit, pokud můžu doporučit, tak http://pawno.cz/topic/33271-vip-system-by-kavi-006/ (Skoro stejné)
  14. Tu je speciální House System od Qwera na RZE http://pastebin.com/LajEgrfk
  15. TVL Nespamuj, beztak to máš nějakým Gamemódem
  16. No co s tím? Vzpomenout, nebo přeinstalovat
  17. Vyřešeno AdsCleaner Můžete LOCK
  18. Mám problém, z ničeho nic se mi objevila tato lišta. Děkuji za odpovědi
  19. 1. Mód zkopírovaný není a jestli někdy něco bude, což pochybuju, tak tam autora připíšu. 2. Doména nám expiruje 13.8 2014, což je už pomálu za chvíli a pro tvojí informaci, ti můžu slíbit, že tam nebude nic zkopírovaného, maximálně tak obrázek. Čestné slovo 3. A ten web není ani dokončený, jelikož jsem ho ještě nedokončil a psát ho v 4 jazycích není zas tak lehké. 4. Dej mi už pokoj, kamkoli když něco napíšu, tak mám od tebe jeden hate za druhým. Takže pokud to není k věci a tady se jedná o Gamemód, tak tě slušně žádám, nepiš mi sem řeči o ničem. 5. Díky //Edit nebo mi piš to PM
  20. Máš s ní problém? A co taháš do Gamemódu webou stránku?? Přečti si téma....
  21. Promiň, já to nikde nekopíruju, příznávám, že používám některé FS jako je Progress Bar Creator, Zamaroth Textdraw Editor, ale to je vše, pár FS pro mě udělal Petr2000, ale jinak jako nic. A ano, dříve možná před 5 lety jsem taky trochu kopíroval nějaký ty HTML, ale protože mi bylo 10 let. Tohle je moje první stránka, ještě na estrankách a byla to taková shitka - http://www.nefalsovany-fakta.estranky.cz/ (Začala v 2009) (Nedávám to sem jako odkaz, aby si nikdo nemohl stěžovat, že tu dělám reklamu, protože to není mým záměrem.) Teď už mě však kopírovat nebaví, protože mi to nedává takový pocit, jako když jsem to před pár lety kopíroval, prostě je to teď nuda, proto si to dělám sám, sice to zatím stojí za ....., ale alespoň se v tom zdokonaluji. Takže, jak mi se spousta lidí píše, že se na tom nikdo hrát nebude, tak to chápu, mód je zatím skoro, spíše úplně nehratelný. Takže doufám, že tu zase nebude nějakých pár vážně "úžasných" odpovědí.
  22. Update Hlavně je nová IP : samp.papoera.eu:7777 Příjemné testování A Děkuji za hodnocení, ať už je kladné či záporné Novinky Zaprvé přibyl nový Telefon Poté přibyli novinky, jako je možnost cestování (zatím jen Čína), poté přibyla objednávka pizzy(Nelze sníst). Hráči jsou zatím kvůli bugům s virtual worldy v jednom worldu. Hráč může spát, čůrat v hotelu (Čína) Lze zavolat policistu, ale ten vám prozatím odmítne pomoci
  23. Nepomohlo Díky celé opraveno Nakonec to bylo celé kvůli dvěma nenapsaným závorkám } Moc díky
×
×
  • Create New...