Üzenetek megjelenítése

Ez a szekció lehetővé teszi a felhasználó által írt összes hozzászólás megtekintését. Vedd figyelembe, hogy csak azokba a fórumokba írt hozzászólásokat látod, amelyekhez hozzáférésed van.


Üzenetek - BoSS

Oldalak: 1 ... 36 37 [38] 39 40 ... 55
556
Segítségkérés / Rablás
« Dátum: 2012. április 15. - 10:54:31 »
Sziasztok.
Ezt a rablás scriptet Gabor..írta,és azt szeretném ha csak úgy müködne hogy csak meg van a játékosnak az 500 pontja.Ha nincs meg neki akkor kiírja hogy kevés még hozzá a tapasztalatod.
[pawn]CMD:rabol(playerid, params[])   
{
   if(GetPVarInt(playerid,\"rabol\")==1) 
   {
   SendClientMessage(playerid,COLOR_RED,\"Most raboltál! 5 perc múlva újra rabolhatsz\");
   }
   if(GetPVarInt(playerid,\"rabol\")==0)
   {
   if(IsPlayerInRangeOfPoint(playerid,1.0,2032.0376,1319.3666,10.8203) || IsPlayerInRangeOfPoint(playerid,1.0, 2158.7371,939.8642,10.8203) || IsPlayerInRangeOfPoint(playerid,1.0, 2183.2349,2161.5310,10.8203) || IsPlayerInRangeOfPoint(playerid,1.0,2086.3616,2047.7804,11.0579))//Értelemszerûen tudod bõvíteni!
   {
   SendClientMessage(playerid,COLOR_RED,\"Beleütöttél egyet az ATM-be, és kiesett a sok pénz! Gyorsan szedd fel a lóvét!!\");
   TogglePlayerControllable(playerid,0);
   SetPlayerWantedLevel(playerid,6);
   SetPVarInt(playerid,\"rabol\",1);
   SendClientMessageToAll(COLOR_BLUE,\"[RIASZTÁS]: Kirabolták az ATM-et!\");
   SetTimerEx(\"rabolas\",15000,0,\"i\",playerid);
   }
   else
   {
   SendClientMessage(playerid,COLOR_GREEN,\"Nemvagy ATM közelébe! Mennyé közelebb! :\'S\");
   }
   }
   return 1;
}[/pawn]
Helpet elõre is köszcsi.

557
Szkript kérések / Házrendszer kérése.
« Dátum: 2012. április 15. - 00:30:16 »
GarHouse-val az a gond,hogy belelépek a cp-be és a buszos meló szövegét írja ki és efagyok 5mp-re mint ha buszonék....
 
Idézetet írta: $uRí date=1334441399\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"20189\" data-ipsquote-contentclass=\"forums_Topic
Vagy használd a PPC_House ház rendszert!
 
Az magyarul? És sscanf-et használ?
Ha igen akkor tudnál linkelni? :)

558
Szkript kérések / Házrendszer kérése.
« Dátum: 2012. április 15. - 00:01:48 »
Idézetet írta: $uRí date=1334440782\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"20189\" data-ipsquote-contentclass=\"forums_Topic
http://sampforum.hu/index.php?topic=19583.msg212085#msg212085
 
Nem értek a mysql-hoz meg nincs is. :/
 

GarHouse 2.0
http://sampforum.hu/index.php?topic=10946.0
 
[/quote]
Nálam ez bugos  legalábbis most GarHouse-t próbáltam ki és mikor beírom hogy /enter nem az intibe dob hanem SF-be vagy LS-be.

559
Szkript kérések / Házrendszer kérése.
« Dátum: 2012. április 14. - 23:54:16 »
Sziasztok,Nem tudok ajánlani egy magyar házrendszert?
Olyasmi kéne mint pl Gagus House System,annál az a bajom,hogy ha /entert írom akkor nem az intibe dob hanem Sf-be vagy Ls-be.
Olyan kéne amit rcon admin állít be,gondolok itt pl : /createhouse [interior ID] money [score]
Lehessen jelszót rakni a tulajnak a házra.
Eltudja adni más playernak vagy akár csak simán is,mondjuk fél árért stb....
Elõre is köszi a helpet

560
Segítségkérés / Autóbérlés 2 errort ír rá
« Dátum: 2012. április 14. - 20:39:46 »
Idézetet írta: Casamiro date=1334427409\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"20111\" data-ipsquote-contentclass=\"forums_Topic
Itt az egész hibátlanul, megcsinálva ahogy kérted:
#include <a_samp>
#include <zcmd>
forward BerlesVege(playerid, kocsi);
public OnGameModeInit()
{
      new x = 8-1;
      for(; x++ < 18;) MotorAllitas(x);
      return 1;
}
CMD:berles(playerid, params[])
{
       if(!BerlosKocsi(GetPlayerVehicleID(playerid))) return SendClientMessage(playerid, -1, \"Nem ülsz bérlõs kocsiban!\");
       if(GetPlayerMoney(playerid) < 1500) return SendClientMessage(playerid, -1, \"A bérlés ára 1500$!\");
       SetTimerEx(\"BerlesVege\", 60*1000*20, false, \"ii\", playerid, GetPlayerVehicleID(playerid));
       MotorInditas(GetPlayerVehicleID(playerid));
       return SendClientMessage(playerid, -1, \"Jármû kibérelve! -1500$, 20 percig érvényes!\");
}
stock BerlosKocsi(v)
{
      if(v >= 8 && v <= 18) return 1;
      return 0;
}
public BerlesVege(playerid, kocsi)
{
      SendClientMessage(playerid, -1, \"Lejárt a bérlési idõ!\");
      SetVehicleToRespawn(kocsi);
      MotorAllitas(kocsi);
}
stock MotorAllitas(vehicleid)
{
new engine,lights,alarm,doors,bonnet,boot,objective;
GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
SetVehicleParamsEx(vehicleid,VEHICLE_PARAMS_OFF,lights,alarm,doors,bonnet,boot,objective);
        return 1;
}
stock MotorInditas(vehicleid)
{
new engine,lights,alarm,doors,bonnet,boot,objective;
GetVehicleParamsEx(vehicleid,engine,lights,alarm,doors,bonnet,boot,objective);
SetVehicleParamsEx(vehicleid,VEHICLE_PARAMS_ON,lights,alarm,doors,bonnet,boot,objective);
        return 1;
}

 

Kösz Casamiro megy.
Mindenkinek adtam érte + aki próbált segítséget nyújtani :)
Viszont annyi van még,hogy a pénzt nem vonja le.

561
Segítségkérés / Autóbérlés 2 errort ír rá
« Dátum: 2012. április 14. - 20:01:34 »
Idézetet írta: $uRí date=1334425683\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"20111\" data-ipsquote-contentclass=\"forums_Topic
De ne a modba tedd bele hanem FS -ként!
 
Meg történt úgy se jó.... :/
fsbe beraktam így:
[pawn]#include <a_samp>
#include <zcmd>
new kocsi;
new ELSOKOCSIID;
new UTOLSOKOCSIID;
forward BerlesVege(playerid, kocsi);
CMD:berles(playerid, params[])
{
       if(!BerlosKocsi(GetPlayerVehicleID(playerid)))
       if(RemovePlayerFromVehicle(playerid)) return SendClientMessage(playerid,-1,\"Nem bérelted ki a kocsit!\");
       if(GetPlayerMoney(playerid) < 1500) return SendClientMessage(playerid, -1, \"A bérlés ára 1500$!\");
       SetTimerEx(\"BerlesVege\", 60*1000*20, false, \"ii\", playerid, kocsi);
       return SendClientMessage(playerid, -1, \"Jármû kibérelve! -1500$, 20 percig érvényes!\");
}
stock BerlosKocsi(v)
{
      if(v >= 8 && v <= 18) return 1;
      return 0;
}
public BerlesVege(playerid)
{
      SendClientMessage(playerid, -1, \"Lejárt a bérlési idõ!\");
      SetVehicleToRespawn(kocsi);
      RemovePlayerFromVehicle(playerid);
}[/pawn]
ÉS nem jó,ráadásul nekem 2 warningot add ki.
[pawn]C:\\Documents and Settings\\Rendszergazda\\Asztal\\Ghost.pwn(31) : warning 203: symbol is never used: \"ELSOKOCSIID\"
C:\\Documents and Settings\\Rendszergazda\\Asztal\\Ghost.pwn(31) : warning 203: symbol is never used: \"UTOLSOKOCSIID\"
Pawn compiler 3.2.3664           Copyright © 1997-2006, ITB CompuPhase
2 Warnings.[/pawn]
31.sor nicns az fsben.

562
Segítségkérés / Autóbérlés 2 errort ír rá
« Dátum: 2012. április 14. - 19:36:17 »
Sajnos nálam nem jó be ágyaztam a módba....ha beülök bérlés nélkül eltudok indulni de ha beírom h /berles akkor lese vo lovét . Nekem sajnos nem megy :(

563
Segítségkérés / 26 error
« Dátum: 2012. április 14. - 18:56:10 »
Nem jó de azé köszi ment érte plusz

564
Segítségkérés / Autóbérlés 2 errort ír rá
« Dátum: 2012. április 14. - 18:50:50 »
Nem jó.Ugyan úgy el indul ha nem bérelik ki a kocsit , úgy kéne h bese indul a motor és ha beírom h /berles (annak ellenére h elindul az nélkül is :D )  szóval ha beírom h berles akkor lese von pénzt.
 
stock BerlosKocsi(v)
{
      if(v >= 8 && v <= 18) return 1;
      return 0;
}

 
E: ÉS kétwarning is van
[pawn]
C:\\Documents and Settings\\Rendszergazda\\Asztal\\Modtesztelés\\Fejlesztés\\pc.pwn(4970) : warning 203: symbol is never used: \"ELSOKOCSIID\"
C:\\Documents and Settings\\Rendszergazda\\Asztal\\Modtesztelés\\Fejlesztés\\pc.pwn(4970) : warning 203: symbol is never used: \"UTOLSOKOCSIID\"[/pawn]

565
Segítségkérés / 26 error
« Dátum: 2012. április 14. - 18:30:10 »
Idézetet írta: $uRí date=1334402720\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"20144\" data-ipsquote-contentclass=\"forums_Topic
Ez a modban szerepel neked? Ami a dutils inc -ben található?
 
Nem, ez a dutilsba van azthittem azt kéred :D másolod ami a modban van.
egy ilyen van ott xD \"{\" egészében meg:
[pawn]enum uInfo
{
uPlayer,
uHaz,
uKocsi,
uBiz,
uTerulet
};[/pawn]

566
Segítségkérés / 26 error
« Dátum: 2012. április 14. - 13:23:42 »
tessék.
112.sor:--->  return mktime(hour,minute,second,day,month,year);

567
Segítségkérés / 26 error
« Dátum: 2012. április 14. - 13:14:54 »
Bõvebben? :D Mit tudok tenni,hogy ne legyen error?

568
Segítségkérés / 26 error
« Dátum: 2012. április 14. - 13:02:59 »
26 error van a modomban,valaki tudja hogy milett vele? :/
[pawn]C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\dutils.inc(112) : error 079: inconsistent return types (array & non-array)
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\junkbuster.inc(4041) : warning 201: redefinition of constant/macro (symbol \"OnPlayerKeyStateChange\")
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(291) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(295) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(306) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(310) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(321) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(325) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(336) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(340) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(351) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(355) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(366) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(370) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(381) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(385) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(396) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(400) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(411) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(415) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(426) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(430) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(441) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(445) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(456) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(460) : error 047: array sizes do not match, or destination array is too small
C:\\Documents and Settings\\Rendszergazda\\Asztal\\SA-MP 03D\\pawno\\include\\y_hooks.inc(471) : error 047: array sizes do not match, or destination array is too small
Compilation aborted.Pawn compiler 3.2.3664           Copyright © 1997-2006, ITB CompuPhase
26 Errors.[/pawn]

569
Segítségkérés / Autóbérlés 2 errort ír rá
« Dátum: 2012. április 14. - 12:31:35 »
Õ azt tudom én azt ki is vettem,de ugyan úgy beindulnak a kocsik ha beülnek úgy kéne hogy neinduljanak be...hanem mondjuk kiírja hogy bérlési díj 1500$ (/berles)

570
Fórum Archívum (Témák/Fórumok) / Biznisz Fs
« Dátum: 2012. április 14. - 09:09:42 »
Már jó,de mivel lehet meg venni a bizniszt? xD

Oldalak: 1 ... 36 37 [38] 39 40 ... 55
SimplePortal 2.3.7 © 2008-2025, SimplePortal