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

Oldalak: 1 [2] 3 4 ... 10
16
Segítségkérés / Felvono próbléma
« Dátum: 2015. Május 27. - 20:02:57 »
Helló az a próblémám lenne hogy amikor felér a felvonó a 2-dik kordinátához akkor nem áll meg 30 mp hanem egyből lemegy és amikor lent van csak akkor áll 30 mp. Úgy szeretném hogy mind a 2-nél álljon 30 mp. Van valakinek valami ötlete hogy lehetne megoldani?
 

#include <a_samp>
#include \"../include/gl_common.inc\" // for PlaySoundForPlayersInRange()
#define NUM_SHIP_ROUTE_POINTS   2
#define SHIP_OBJECT_ID          5837 // pirate ship
#define SHIP_MOVE_SPEED         40
#define SHIP_DRAW_DISTANCE      800.0
// Pirate ship route points (position/rotation)
new Float:gShipRoutePoints[NUM_SHIP_ROUTE_POINTS][6] = {
{-2102.3003, -2226.0457, 33.7934,  -0.0400, 0.0000, -219.9600},
{-2279.5198, -1818.1901, 484.2934, -0.0400, 0.0000, -219.9600}
};
 
//new gShipCurrentPoint = 1; // current route point the ship is at
new gShipCurrentPoint = 0;
// SA-MP objects
new gMainShipObjectId;
forward StartMovingTimer();
//-------------------------------------------------
public StartMovingTimer()
{
MoveObject(gMainShipObjectId,gShipRoutePoints[gShipCurrentPoint][0],
gShipRoutePoints[gShipCurrentPoint][1],
gShipRoutePoints[gShipCurrentPoint][2],
SHIP_MOVE_SPEED / 4.0, // bit slower for the first point
gShipRoutePoints[gShipCurrentPoint][3],
gShipRoutePoints[gShipCurrentPoint][4],
gShipRoutePoints[gShipCurrentPoint][5]);
}
//-------------------------------------------------
public OnFilterScriptInit()
{
gMainShipObjectId = CreateObject(SHIP_OBJECT_ID, gShipRoutePoints[0][0], gShipRoutePoints[0][1], gShipRoutePoints[0][2],
gShipRoutePoints[0][3], gShipRoutePoints[0][4], gShipRoutePoints[0][5], SHIP_DRAW_DISTANCE);
SetTimer(\"StartMovingTimer\",30*1000,0); // pause at route 0 for 30 seconds
return 1;
}
//-------------------------------------------------
public OnFilterScriptExit()
{
    DestroyObject(gMainShipObjectId);
return 1;
}
//-------------------------------------------------
public OnObjectMoved(objectid)
{
    if(objectid != gMainShipObjectId) return 0;
if(gShipCurrentPoint > 0 && !(gShipCurrentPoint % 1)) {
}
    gShipCurrentPoint++;
    if(gShipCurrentPoint == NUM_SHIP_ROUTE_POINTS) {
gShipCurrentPoint = 0;
         MoveObject(gMainShipObjectId,gShipRoutePoints[gShipCurrentPoint][0],
        gShipRoutePoints[gShipCurrentPoint][1],
gShipRoutePoints[gShipCurrentPoint][2],
SHIP_MOVE_SPEED / 4.0, // slower for the last route
gShipRoutePoints[gShipCurrentPoint][3],
gShipRoutePoints[gShipCurrentPoint][4],
gShipRoutePoints[gShipCurrentPoint][5]);
return 1;
}
if(gShipCurrentPoint == 1) {
    // Before heading to the first route we should wait a bit
StopObject(gMainShipObjectId);
    SetTimer(\"StartMovingTimer\",30*1000,0); // pause at route 0 for 30 seconds
return 1;
}
    MoveObject(gMainShipObjectId,gShipRoutePoints[gShipCurrentPoint][0],
gShipRoutePoints[gShipCurrentPoint][1],
gShipRoutePoints[gShipCurrentPoint][2],
SHIP_MOVE_SPEED,
gShipRoutePoints[gShipCurrentPoint][3],
gShipRoutePoints[gShipCurrentPoint][4],
gShipRoutePoints[gShipCurrentPoint][5]);
 
return 1;
}

17
Segítségkérés / Linux gond
« Dátum: 2015. Február 27. - 20:11:01 »
Köszi megoldotam.

18
Segítségkérés / Linux gond
« Dátum: 2015. Február 24. - 19:36:32 »
Helló! Azzal a próblémával forulok hozzátok időnkénent a szerver nem ment a scriptfiles-ba peddig minden lib-et telepítetünk a szervergépre.... Ha valaki tudja mi a gond kérem írja le.
 

sh: error while loading shared libraries: libc.so.6: cannot open shared object file: Error 24

19
Munkaerő keresése / Mappereket keresünk Roleplay szervere
« Dátum: 2015. Február 19. - 16:06:45 »
Mappereket keresünk
 


Helló egy új projecten dolgozunk amihez persze mapperekre is lenne szükségünk lehetőleg olyan embereket keresünk akik jól tudnak mappolni MTA és Samp editorton is. Ha éredekel valakit keressen fel vagy írjom PM-be. Lehetőleg megbízható emberek jelentezéseit várjuk. A szerver még nincs kész nem rég kezünk neki. A mapperkedésér cserében majd megbeszéljük.

 




Info
 



20
Segítségkérés / Jármû tulajdonosa kiírása
« Dátum: 2014. Április 12. - 18:57:34 »
Ja nálam mindent minden rendesen de egy kis idõ utána eltünt

21
Segítségkérés / Jármû tulajdonosa kiírása
« Dátum: 2014. Április 12. - 17:44:01 »
format(vText, sizeof(vText), \"{FFFF00}Tulajdonosa:\\n %s\", AHouseData[HouseID][Owner]);
A \"AVehicleData[vid][Owner]\" helyett kell \"AHouseData[HouseID][Owner]\"

 
de amúgy én is megcsináltam és csak buggolt nem sokk esély van rá hogy nem fog buggolni
[mod]Kiraktam helyetted a pawn code taget![/mod]

22
Segítségkérés / Jármû tulajdonosa kiírása
« Dátum: 2014. Április 12. - 18:57:34 »
Ja nálam mindent minden rendesen de egy kis idõ utána eltünt

23
Segítségkérés / Jármû tulajdonosa kiírása
« Dátum: 2014. Április 12. - 17:44:01 »
format(vText, sizeof(vText), \"{FFFF00}Tulajdonosa:\\n %s\", AHouseData[HouseID][Owner]);
A \"AVehicleData[vid][Owner]\" helyett kell \"AHouseData[HouseID][Owner]\"

 
de amúgy én is megcsináltam és csak buggolt nem sokk esély van rá hogy nem fog buggolni
[mod]Kiraktam helyetted a pawn code taget![/mod]

24
Munkaerő keresése / TIGER - SAMP COMMUNITY (Kamionos szerver)
« Dátum: 2014. Február 19. - 13:36:09 »
Ha gondolod én is jelentkeznék scripternek de nekem is ugyan azok az elvárásaim mind zola-nak. (Ha érdekel írd pm-et)

25
Szkript kérések / MusicFm 89.5 paranccsal
« Dátum: 2014. Február 03. - 09:55:53 »
Tessék
 

#include <a_samp>
#include <zcmd>
 
CMD:musicfm(playerid, params[])
{
PlayAudioStreamForPlayer(playerid, \"http://79.172.241.238:8000/musicfm.mp3\");
SendClientMessage(playerid, -1, \"Most a 89.5 MusicFm-et hallgatod\");
return 1;
}

26
Segítségkérés / K+H gomb ézékelése
« Dátum: 2013. December 30. - 15:25:46 »
ha átállítod R2 télleg nem megy :D

27
Segítségkérés / Pwn visszahozás
« Dátum: 2013. December 02. - 17:04:29 »
a gépemen meg volt csak véletlenül felülírtam de hogy mûködik ez a GetDataBack dolog?

28
Segítségkérés / Pwn visszahozás
« Dátum: 2013. December 02. - 14:00:17 »
Helló az lenne a kérdésem hogy a deAMX kívül valahogy még vissza lehet hozni a pwn faj-t? Mert a deAMX csak ezeket az inckeket hozza vissza
 

#include
#include
#include

29
Segítségkérés / PPC Rendszám ((nem lesz semmi editelt szerver))
« Dátum: 2013. November 20. - 12:54:56 »
talán ha bemásolnád többet tudnák mondani

30
Segítségkérés / Csatlakozási baj
« Dátum: 2013. November 17. - 17:30:29 »
lehet hogy össze keveri az ip-ed egy bannolt ip-vel nálam már volt ilyen is

Oldalak: 1 [2] 3 4 ... 10
SimplePortal 2.3.7 © 2008-2024, SimplePortal