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

Oldalak: 1 ... 3 4 [5] 6 7 ... 14
61
Segítségkérés / Pénz - ba
« Dátum: 2012. október 13. - 16:59:37 »
Hello!
Hogy oldom meg hogy a pénz ne mennyen le - ba?

62
Segítségkérés / Name tag
« Dátum: 2012. október 13. - 13:41:04 »
köszönöm!

63
Segítségkérés / Name tag
« Dátum: 2012. október 13. - 13:29:21 »
mûködik :) de az on nem :S

64
Segítségkérés / Name tag
« Dátum: 2012. október 13. - 13:20:03 »
ez mûködik de most nem hat semmit ez:
http://wiki.sa-mp.com/wiki/DisableNameTagLOS
szóval a nevek látszanak

65
Segítségkérés / Name tag
« Dátum: 2012. október 13. - 13:09:10 »
ránézek :)

66
Segítségkérés / Name tag
« Dátum: 2012. október 13. - 13:02:49 »
Hello!
Nekem van 1 ilyen a game mode init alatt
http://wiki.sa-mp.com/wiki/DisableNameTagLOS
és olyan kéne hogy ha valaki beír 1 parancsot csak akkor lássa ezt!

67
Segítségkérés / pawno hiba
« Dátum: 2012. október 13. - 11:23:14 »
mégsem jó teljesen mivel odaállák én  nem tesz be /enter rel

Dupla hozzászólás automatikusan összefûzve. ( 2012. október 13. - 11:25:12 )

létrehozza a pickup ot is meg minden de odaállok én nem tesz be /enter rell

68
Segítségkérés / pawno hiba
« Dátum: 2012. október 13. - 10:54:10 »
nem jó így se

Dupla hozzászólás automatikusan összefûzve. ( 2012. október 13. - 10:55:19 )

köszönöm mennek a + ok!

69
Segítségkérés / pawno hiba
« Dátum: 2012. október 13. - 10:15:03 »
   // This is a comment
    // uncomment the line below if you want to write a filterscript
    //#define FILTERSCRIPT
    new cash;
    #include <a_samp>
    #if defined FILTERSCRIPT
    #endif
    public OnGameModeInit()
    {
            // Don\'t use these lines if it\'s a filterscript
            cash=CreatePickup(1239,1,423.4611,2536.5435,16.1484);
            return 1;
    }
    public OnPlayerPickUpPickup(playerid, pickupid)
    {
            if(pickupid == cash)
                {
                GameTextForPlayer(playerid,\"~r~ /enter ~y~ to enter this building\",3000,1);
                }
            return 1;
    }
    public OnPlayerCommandText(playerid, cmdtext[]) {
    if (strcmp(\"/enter\", cmdtext, true, 6) == 0)
            {
                    if(IsPlayerInRangeOfPoint(playerid,10,423.4611,2536.5435,16.1484))
                            {
                                    SetPlayerPos(playerid,410.5,2512.6999511719,-41.400001525879);
                                    return 1;
                            }
                                    if (strcmp (\"/exit\", cmdtext, true, 6) == 0)
            {
                    if (IsPlayerInRangeOfPoint (playerid, 10,388.8720,173.8050,1008.3828))
                            {
                                            SetPlayerPos (playerid, 1480,9829, -1769.9470,18.7958);
                                                            return 1;
              }
                                                    }

 

F:\\sampe\\enter.pwn(36) : warning 217: loose indentation
F:\\sampe\\enter.pwn(40) : warning 202: number of arguments does not match definition
F:\\sampe\\enter.pwn(41) : warning 217: loose indentation
F:\\sampe\\enter.pwn(44) : error 030: compound statement not closed at the end of file (started at line 30)
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase

70
Segítségkérés / pawno hiba
« Dátum: 2012. október 13. - 09:59:45 »
ide jutottam de valamért nem engedi bezárni:
Kód: (pawn) [Kijelölés]
F:\\sampe\\enter.pwn(40) : warning 202: number of arguments does not match definition
F:\\sampe\\enter.pwn(43) : error 030: compound statement not closed at the end of file (started at line 38)
Pawn compiler 3.2.3664 Copyright (c) 1997-2006, ITB CompuPhase
 
1 Error.


// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
new cash;
#include <a_samp>
#if defined FILTERSCRIPT
#endif
public OnGameModeInit()
{
        // Don\'t use these lines if it\'s a filterscript
        cash=CreatePickup(1239,1,423.4611,2536.5435,16.1484);
        return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
        if(pickupid == cash)
            {
            GameTextForPlayer(playerid,\"~r~ /enter ~y~ to enter this building\",3000,1);
            }
        return 1;
}
public OnPlayerCommandText(playerid, cmdtext[]) {
if (strcmp(\"/enter\", cmdtext, true, 6) == 0)
        {
                if(IsPlayerInRangeOfPoint(playerid,10,423.4611,2536.5435,16.1484))
                        {
                                SetPlayerPos(playerid,410.5,2512.6999511719,-41.400001525879);
                                return 1;
                        }
      if (strcmp (\"/exit\", cmdtext, true, 6) == 0)
        {
                if (IsPlayerInRangeOfPoint (playerid, 10,388.8720,173.8050,1008.3828))
                        {
                              SetPlayerPos (playerid, 1480,9829, -1769.9470,18.7958);
                         return 1;
            }

71
Segítségkérés / pawno hiba
« Dátum: 2012. október 13. - 09:20:02 »
valamivel jobb:
 
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
new cash;
#include <a_samp>
#if defined FILTERSCRIPT
#endif
public OnGameModeInit()
{
// Don\'t use these lines if it\'s a filterscript
cash=CreatePickup(1239,1,423.4611,2536.5435,16.1484);
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == cash)
    {
    GameTextForPlayer(playerid,\"~r~ /enter ~y~ to enter this building\",3000,1);
    }
return 1;
}
 
if (strcmp(\"/enter\", cmdtext, true, 6) == 0)
{
if(IsPlayerInRangeOfPoint(playerid,10,423.4611,2536.5435,16.1484))
       {
      SetPlayerPos(playerid,410.5,2512.6999511719,-41.400001525879);
      return 1;
   }
//other enter commands go here if(player......
if (strcmp (\"/ exit\", cmdtext, igaz, 6) == 0)
{
if (IsPlayerInRangeOfPoint (playerid, 10,388.8720,173.8050,1008.3828))
       {
      SetPlayerPos (playerid, 1480,9829, -1769.9470,18.7958);
      return 1;
   }
}

 

F:\\sampe\\enter.pwn(28) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(30) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(33) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(37) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(39) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(42) : error 010: invalid function or declaration
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase
 
6 Errors.

72
Segítségkérés / pawno hiba
« Dátum: 2012. október 13. - 08:48:00 »
// This is a comment
// uncomment the line below if you want to write a filterscript
//#define FILTERSCRIPT
#include <a_samp>
#if defined FILTERSCRIPT
#endif
public OnGameModeInit()
{
// Don\'t use these lines if it\'s a filterscript
cash=CreatePickup(1239,1,423.4611,2536.5435,16.1484);
return 1;
}
public OnPlayerPickUpPickup(playerid, pickupid)
{
if(pickupid == cash)
    {
    GameTextForPlayer(playerid,\"~r~ /enter ~y~ to enter this building\",3000,1);
    }
return 1;
}
 
if (strcmp(\"/enter\", cmdtext, true, 6) == 0)
{
if(IsPlayerInRangeOfPoint(playerid,10,423.4611,2536.5435,16.1484))
       {
      SetPlayerPos(playerid,410.5,2512.6999511719,-41.400001525879);
      return 1;
   }
//other enter commands go here if(player......
if (strcmp (\"/ exit\", cmdtext, igaz, 6) == 0)
{
if (IsPlayerInRangeOfPoint (playerid, 10,388.8720,173.8050,1008.3828))
       {
      SetPlayerPos (playerid, 1480,9829, -1769.9470,18.7958);
      return 1;
   }
}

 
és erre ezt írja:
 
F:\\sampe\\enter.pwn(13) : error 017: undefined symbol \"cash\"
F:\\sampe\\enter.pwn(19) : error 017: undefined symbol \"cash\"
F:\\sampe\\enter.pwn(27) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(29) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(32) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(36) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(38) : error 010: invalid function or declaration
F:\\sampe\\enter.pwn(41) : error 010: invalid function or declaration
Pawn compiler 3.2.3664           Copyright (c) 1997-2006, ITB CompuPhase
 
8 Errors.

 
A helpte elõre köszönöm!

73
SA-MP: Szerverfejlesztés / Rendõr mini filterscript (Életem elsõ script-je)
« Dátum: 2012. október 13. - 08:08:35 »
kezdõnek jó fõleg ha ez az elsõ!

74
Segítségkérés / Inti id
« Dátum: 2012. szeptember 27. - 16:11:27 »
Hello!
Kellene nekem 1 olyan interior ház id ami fullos de nem met dog vagy mi... :)

75
Segítségkérés / Interior
« Dátum: 2012. szeptember 27. - 16:07:40 »
köszönöm és olyan van hogy lekérem melyik intibe vook pl: /info és írja id:10

Oldalak: 1 ... 3 4 [5] 6 7 ... 14
SimplePortal 2.3.7 © 2008-2024, SimplePortal