Ü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 - ZyZu.

Oldalak: 1 ... 465 466 [467] 468 469 ... 527
6991
Kérdések, Segítség / TP-LINK Wireless Router
« Dátum: 2012. június 16. - 13:58:19 »
Nekem is ilyen routerem van és nincsen semmi gond.  :hmmm:

6992
Kérdések, Segítség / SMF fórummotorral kapcsolatos kérdések
« Dátum: 2012. június 16. - 13:57:27 »
Hogyan lehet tenni olyat a fórumba, hogy mennyi ideje mûkõdik? pl:  2 éve, 4 honapja, 3 napja, 2 perce, 1 sec mûkõdik a fórum..?

6993
Beszélgetés / Ban játék
« Dátum: 2012. június 16. - 13:56:26 »
Earthquake. bannolva lett ZyZu álttal! Indok: Rozsaszín név! :D

6994
Beszélgetés / Hogy ejted ki az elõtted szóló nevét?
« Dátum: 2012. június 16. - 13:54:54 »
pofa  :D

6995
Segítségkérés / run time error 19
« Dátum: 2012. június 16. - 13:49:05 »
Idézetet írta: norbee0170 date=1339847202\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"22917\" data-ipsquote-contentclass=\"forums_Topic


A streamer pluginod nem töltödik be.
[13:37:10]  Loading plugin: streamer.dll
[13:37:10]   Failed.
 

eee... most vettem észre h stramert  :no: tölti be... :hmmm:  0.3e-hez tudtok linkelni mûködõ kompatibilis streamert? :) megköszönném[/quote]
 
[/quote]
jaja bocs nem vettem észre!
Link: http://forum.sa-mp.com/showthread.php?t=102865
És vigyázz legyen benne a plugin mappába a dll és a so is!
E: megelõztek!

6996
Szkript kérések / Skin váltás
« Dátum: 2012. június 16. - 13:43:46 »
Én szerintem nem kell semmi a Death alá, meg kéne maradjon a skine..

6997
Segítségkérés / run time error 19
« Dátum: 2012. június 16. - 13:41:24 »
A streamer pluginod nem töltödik be.
[13:37:10]  Loading plugin: streamer.dll
[13:37:10]   Failed.

6998
Segítségkérés / run time error 19
« Dátum: 2012. június 16. - 13:32:16 »
Pluginok betöltve?
Másold a server_logot! :)

6999
Segítségkérés / Idõ gl_realtime szerint
« Dátum: 2012. június 16. - 13:31:40 »

//
// Keeps the in game time synced to the server\'s time and
// draws the current time on the player\'s hud using a textdraw/
// (1 minute = 1 minute real world time)
//
//  (c) 2009-2012 SA-MP Team
#include <a_samp>
#pragma tabsize 0
//--------------------------------------------------
new Text:txtTimeDisp;
new hour, minute;
new timestr[32];
forward UpdateTimeAndWeather();
//--------------------------------------------------
new fine_weather_ids[] = {1,2,3,4,5,6,7,12,13,14,15,17,18,24,25,26,27,28,29,30,40};
new foggy_weather_ids[] = {9,19,20,31,32};
new wet_weather_ids[] = {8};
stock UpdateWorldWeather()
{
new next_weather_prob = random(100);
if(next_weather_prob < 70)       SetWeather(fine_weather_ids[random(sizeof(fine_weather_ids))]);
else if(next_weather_prob < 95) SetWeather(foggy_weather_ids[random(sizeof(foggy_weather_ids))]);
else                     SetWeather(wet_weather_ids[random(sizeof(wet_weather_ids))]);
}
//--------------------------------------------------
//new last_weather_update=0;
public UpdateTimeAndWeather()
{
// Update time
    gettime(hour, minute);
      format(timestr,32,\"%02d:%02d\",hour,minute);
      TextDrawSetString(txtTimeDisp,timestr);
      SetWorldTime(hour);
      
new x=0;
while(x!=MAX_PLAYERS) {
    if(IsPlayerConnected(x) && GetPlayerState(x) != PLAYER_STATE_NONE) {
        SetPlayerTime(x,hour,minute);
 }
 x++;
}
/* Update weather every hour
if(last_weather_update == 0) {
    UpdateWorldWeather();
}
last_weather_update++;
if(last_weather_update == 60) {
    last_weather_update = 0;
}*/
}
//--------------------------------------------------
public OnGameModeInit()
{
// Init our text display
txtTimeDisp = TextDrawCreate(605.0,25.0,\"00:00\");
TextDrawUseBox(txtTimeDisp, 0);
TextDrawFont(txtTimeDisp, 3);
TextDrawSetShadow(txtTimeDisp,0); // no shadow
    TextDrawSetOutline(txtTimeDisp,2); // thickness 1
    TextDrawBackgroundColor(txtTimeDisp,0x000000FF);
    TextDrawColor(txtTimeDisp,0xFFFFFFFF);
    TextDrawAlignment(txtTimeDisp,3);
TextDrawLetterSize(txtTimeDisp,0.5,1.5);
UpdateTimeAndWeather();
SetTimer(\"UpdateTimeAndWeather\",1000 * 60,1);
return 1;
}
//--------------------------------------------------
public OnPlayerSpawn(playerid)
{
TextDrawShowForPlayer(playerid,txtTimeDisp);
gettime(hour, minute);
SetPlayerTime(playerid,hour,minute);
return 1;
}
//--------------------------------------------------
public OnPlayerDeath(playerid, killerid, reason)
{
    TextDrawHideForPlayer(playerid,txtTimeDisp);
return 1;
}
//--------------------------------------------------
public OnPlayerConnect(playerid)
{
    gettime(hour, minute);
    SetPlayerTime(playerid,hour,minute);
    return 1;
}
//--------------------------------------------------

 
Ezt simán átt lehet írni a sajátodéra.. :)

7000
Segítségkérés / Oxford kocsirendszer
« Dátum: 2012. június 16. - 13:08:16 »
OnGameModeInit alatt keresd!

7001
Segítségkérés / Idõ gl_realtime szerint
« Dátum: 2012. június 16. - 13:07:23 »
Nézzd ki belõle. :D

7002
Szkript kérések / Skin váltás
« Dátum: 2012. június 16. - 10:11:43 »

7003
Segítségkérés / Idõ rendszer
« Dátum: 2012. június 16. - 09:52:40 »
Idézetet írta: norbee0170 date=1339832262\" data-ipsquote-contentapp=\"forums\" data-ipsquote-contenttype=\"forums\" data-ipsquote-contentid=\"22901\" data-ipsquote-contentclass=\"forums_Topic
az oxford -ban azér állítja vissza mer van benne egy valós idõ izé a módban és az magától változtatja ahogy telnek-múlnak az órák, ha azt kiveszed jólesz :)
leszedem ox-ot és megnézem neked mit kell kiszedned de sztem megtalálható
 
Ahogy van nálad az idõ úgy megyen az is, ezért nem lehet.
norbee0170 láttom használod az izé szót :D xD

7004
Bemutatkozás / xXGoofreXx
« Dátum: 2012. június 16. - 09:36:41 »
Üdv a fórumon! :)

7005
Segítségkérés / Idõ rendszer
« Dátum: 2012. június 16. - 09:35:55 »
Abba azt hiszem van idõ szkript ami váltja saját magát..

Oldalak: 1 ... 465 466 [467] 468 469 ... 527
SimplePortal 2.3.7 © 2008-2025, SimplePortal