Ü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 - Csabesz

Oldalak: 1 ... 391 392 [393] 394 395 ... 442
5881
Segítségkérés / Goto parancs
« Dátum: 2011. január 01. - 14:35:15 »
Idézetet írta: DrAkE date=1293887982\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"5055\" data-ipsquote-contentclass=\"forums_Topic


CMD:setgoto(playerid, params[])
{
if(GetPVarInt(playerid, \"goto\") == 0) {
    SetPVarInt(playerid, \"goto\", 1);
    SendClientMessage(playerid, COLOR_LIGHTBLUE, \"Engedélyezted a gotozást magadhoz!\");
}else{
    SetPVarInt(playerid, \"goto\", 1);
    SendClientMessage(playerid, COLOR_LIGHTBLUE, \"Letiltottad a gotozást magadhoz!\");
}
return 1;
}

 

Engedélyezésnél és létiltásnál is 1 a \'goto\' kérték, ezért minden esetbe fog tudni teleportálni.

5882
Segítségkérés / Goto parancs
« Dátum: 2011. január 01. - 03:52:34 »
Háát, nem vagyok elragadtatva Stricica.  :-\\


Tessék,
 

CMD:goto ( playerid, params [ ] )
{
    new gID, string [ 128 ];
    new Float:X, Float:Y, Float:Z;
    if ( sscanf ( params, \"u\", gID ) ) return SendClientMessage(playerid, COLOR_RED, \"Használat: /goto [Játékos ID/Név]\");
    else if ( !IsPlayerConnected ( gID ) && gID == INVALID_PLAYER_ID && GetPVarInt ( gID, \"pGoto\") == 0 ) return SendClientMessage(playerid, COLOR_RED, \"Hiba: A játékos nem elérhetõ, magadat választottad.\");
    GetPlayerPos ( gID, X, Y, Z );
    SetPlayerInterior ( playerid, GetPlayerInterior ( gID ) );
    SetPlayerVirtualWorld ( playerid, GetPlayerVirtualWorld ( gID ) );
    if ( GetPlayerState ( playerid ) != 2 ) return SetPlayerPos ( playerid, X+2, Y, Z );
    {
         SetVehiclePos ( GetPlayerVehicleID ( playerid ), X+3, Y, Z );
         LinkVehicleToInterior ( GetPlayerVehicleID ( playerid ), GetPlayerInterior ( gID ) );
         SetVehicleVirtualWorld ( GetPlayerVehicleID ( playerid ), GetPlayerVirtualWorld ( gID ) );
         format ( string, 128,\"%s odateleportált hozzád!\", PlayerName ( playerid ) ); SendClientMessage ( gID, 0x000000FF, string );
         format ( string, 128,\"Oda teleportáltál: %s-hez(hoz)!\", PlayerName ( gID ) ); SendClientMessage ( playerid, 0x000000FF, string );
    }
    return 1;
}
CMD:setgoto ( playerid, params [  ] )
{
    if ( GetPVarInt ( playerid, \"pGoto\" ) == 0  ) {
         SetPVarInt ( playerid, \"pGoto\", 1 );
         SendClientMessage ( playerid, 0x000000FF, \"Engedélyezted, hogy hozzád teleportálhassanak!\" );
    } else {
          SetPVarInt ( playerid, \"pGoto\", 0 );
          SendClientMessage ( playerid, 0x000000FF, \"Letiltottad, hogy hozzád teleportálhassanak!\" );
    }
    return 1;
}
stock PlayerName ( playerid )
{
   new pname [ MAX_PLAYER_NAME ];
   GetPlayerName ( playerid, pname, MAX_PLAYER_NAME );
   return pname;
}

 
Szerk.: Epsilon kedvéért, átírtam Player Variablesre.  :angel:

5883
Segítségkérés / Nagy Segítség Kellene
« Dátum: 2010. december 31. - 17:42:41 »
Hát akkor írj nekik, jobbat nem tudok.

5884
Segítségkérés / Nagy Segítség Kellene
« Dátum: 2010. december 31. - 17:26:16 »
Hát biztos hogy menni kell! Nekem is Windows 7em van és tökéletesen fut rajta.
Ja és a rendszerem, eredeti Windows 7 Ultimate 64bit:D

5885
Segítségkérés / Nagy Segítség Kellene
« Dátum: 2010. december 31. - 17:20:36 »
Kompatibilis móddal próbáld. ( Kompatibilis problémák megoldása )

5886
Segítségkérés / Goto parancs
« Dátum: 2010. december 31. - 16:53:07 »

1.   /goto [ON/OFF]


      Ezt váltózóval.


2. Admin szkriptekbe van.  :D



5887
Segítségkérés / Még mindig nem értem!!!PLS HELP
« Dátum: 2010. december 30. - 19:42:14 »
Ha beakarsz rakni egy Filterscriptet, akkor azt bekel másolnod a filterscripts mappába, és bekel írnod a server.cfg-be a filterscripts sorba a script nevét.
Ha átkonvertáltad a módot, akkor azt bekel másolnod a gamemodes mappába.

5888
Segítségkérés / Interior
« Dátum: 2010. december 30. - 17:49:00 »
Használsz valamilyen Streamert?

5889
Segítségkérés / több azonos parancs
« Dátum: 2010. december 30. - 13:55:39 »
Idézetet írta: Orbit date=1293704231\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"4892\" data-ipsquote-contentclass=\"forums_Topic
de ebben hiba van xD
 

stock IsPlayerRangeOfPoint(Float:radi, playerid, Float:x, Float:y, Float:z)
{
if(IsPlayerConnected(playerid))
{
new Float:oldposx, Float:oldposy, Float:oldposz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetPlayerPos(playerid, oldposx, oldposy, oldposz);
tempposx = (oldposx -x);
tempposy = (oldposy -y);
tempposz = (oldposz -z);
if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
{
return 1;
}
}
return 0;
}

 
ez nem kéne ide?
 
Az IsPlayerRangeOfPoint függvény, már a \"a_players\" függvénykönyvtárba szerepel.
Tehát ez a kód, amit Te írtál felesleges.  :D

5890
Segítségkérés / XP DVD Írás ERROR
« Dátum: 2010. december 29. - 21:28:09 »
És az íród ( hardver ) nem csak olvasni tud, vagyis csak olvasó és nem író ?  ::|

5891
Segítségkérés / XP DVD Írás ERROR
« Dátum: 2010. december 29. - 20:05:56 »
De mivel írsz? Program  :D

5892
Segítségkérés / [HELP]Fizikai segítség
« Dátum: 2010. december 29. - 20:04:39 »
OFF:
 
Idézetet írta: Bart date=1293643869\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"5001\" data-ipsquote-contentclass=\"forums_Topic


V=sebesség
S=megtett út
T=Eltelt idõ
V= s / t
 
jó ezt énis tom. De abba a ütközõsdiben nem tudsz segíteni?  :D
 
[/quote]
Én ?  :-X
Örülõk ha egy 3t össze tudok hozni évégére. Félévkor épp, hogy meglesz a 2.  :D


5893
Játékok / Cod
« Dátum: 2010. december 29. - 18:24:01 »
Jóvagy!  ;)
Én itt vagyok, meg szerintem sokan mások is a hivatalos oldalra mennek.  :)
COD.hu  :D

5894
Segítségkérés / XP DVD Írás ERROR
« Dátum: 2010. december 29. - 18:21:55 »
Íród?

5895
Segítségkérés / [HELP]Fizikai segítség
« Dátum: 2010. december 29. - 17:50:13 »
V=sebesség
S=megtett út
T=Eltelt idõ
V= s / t

Oldalak: 1 ... 391 392 [393] 394 395 ... 442
SimplePortal 2.3.7 © 2008-2024, SimplePortal