Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 6,979
» Latest member: imaim3024
» Forum threads: 2,336
» Forum posts: 12,212
Full Statistics
|
Online Users |
There are currently 317 online users. » 1 Member(s) | 313 Guest(s) Bing, Google, Applebot, stellab
|
|
|
Infekcja 2: Zombie Survival RPG |
Posted by: Amads - 2025-02-28, 04:04 PM - Forum: Serwery
- No Replies
|
 |
Infekcja 2 to unikalny, rozbudowany i wymagający zombie survival RPG, inspirowany takimi grami jak seria Fallout, Project: Zomboid czy Cataclysm: Dark Days Ahead. Stwórz swoją postać i przetrwaj na pustkowiach, gdzie każda twoja decyzja ma znaczenie.
⠀POZNAJ PUSTKOWIA
⠀⠀⠀• eksploruj stan zrujnowany przez epidemię wirusa infekcji
⠀⠀⠀• przeszukuj pozostałości po cywilizacji i odkrywaj unikalne lokacje
⠀⠀⠀• odwiedzaj bezpieczne osady oraz nielicznych ocalałych w terenie
⠀PRZETRWAJ APOKALIPSĘ
⠀⠀⠀• zmierz się z plagą zombie i uważaj na innych ocalałych
⠀⠀⠀• dbaj o swoje zróżnicowane potrzeby mając na uwadze cechy swojej postaci
⠀⠀⠀• zdobywaj i dbaj o wyposażenie oraz przedmioty potrzebne do przetrwania
⠀TWÓRZ HISTORIĘ
⠀⠀⠀• rozwijaj swoje doświadczenie i umiejętności; wyspecjalizuj się
⠀⠀⠀• buduj swoją sławę, by stać się rozpoznawalnym i szanowanym ocalałym
⠀⠀⠀• zadbaj o reputację i relacje z frakcjami
⠀ODKRYJ SEKRETY
⠀⠀⠀• odnajdź cenne i rzadkie artefakty o potężnych właściwościach
⠀⠀⠀• badaj zakamarki pustkowii i odkryj ukryte miejsca
⠀⠀⠀• odnajdź sposób na ucieczkę z pustkowii
Kompendium gry: https://docs.google.com/document/d/1yUvk...TBgnXSaNRU
Historia aktualizacji: https://docs.google.com/document/d/1e6A3...8vbOzRjaNI
Serwer Infekcja jest jednoosobowym projektem zrodzonym z pasji, którego korzenie sięgają aż 2011 roku, gdy powstała jego pierwsza wersja. Druga odsłona, czyli Infekcja 2, pierwszy raz ujrzała światło w roku 2017 i jest stale rozwijana o kolejne nowości i systemy, by móc nazywać się najbardziej rozbudowanym gamemodem zombie survival w SA:MP. Lista pomysłów się nie kończy, regularne aktualizacje co rusz wprowadzają coś nowego. Dołącz do naszej zwięzłej społeczności i dowiedz się, dlaczego gracze są z nami od wielu lat.
HostName: INFEKCJA 2
Address: Infekcja2.svpj.pl:4004
Players: x / 20
Mode: Infekcja 2
|
|
|
Pawn Kit for Sublime Text |
Posted by: punkochel - 2025-02-26, 06:20 PM - Forum: Releases
- No Replies
|
 |
![[Image: pawn-openmp-sublime-kit.svg]](https://img.shields.io/github/v/release/punkochel/pawn-openmp-sublime-kit.svg)
Pawn Kit for Sublime Text
This plugin is a fork of Pawn syntax, visiting the parent page will give you more details on the plugin's capabilities.
If you development for SA:MP, use Pawn syntax.
Description
The plugin is adapted for development to Open MP.
Refactored snippets and completions.
Supported Libraries
Compilation on F5 key
Create a Default.sublime-keymap file in your Packages/User/ directory, then put the following code in it:
Code: [
{ "keys": ["f5"], "command": "build", "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] },
{ "keys": ["pause"], "command": "exec", "args": {"kill": true}, "context" : [{"key": "selector", "operator": "equal", "operand": "source.pawn", "match_all": true}] }
]
Install
Package Control
Repository: GitHub
|
|
|
Como hago que mi npc ataque al equipo contrario |
Posted by: Nikolay_Staggs - 2025-02-22, 11:35 PM - Forum: Programaci?n
- Replies (2)
|
 |
como le hago para que un npc ataque al equipo contrario
esto es lo que tengo pero no logro me pueden ayudar
enum enum_npc_player
{
pnpc_IS_FROM_THE_TEAM
};
new INFO_PLAYER_NPC[MAX_PLAYERS][enum_npc_player];
enum NPC_enum
{
npc_IS_FROM_THE_TEAM,
npc_SKIN,
npc_NAME[24],
Float:npc_X,
Float:npc_Y,
Float:npc_Z,
Float:npc_A,
npc_COLOR,
npc_WEAPON,
Float:npc_ZONE_MINX,
Float:npc_ZONE_MINY,
Float:npc_ZONE_MAXX,
Float:npc_ZONE_MAXY,
npc_ZONE_ID
};
new INFO_NPC_SERVER[][NPC_enum] =
{
{TEAM_military, 287, "Elias", -1533.6201, 480.6512, 7.2982, 0.0, COLOR_MILITARY, WEAPON_M4, -1693.0, 209.5, -1190.0, 516.5},
{TEAM_terrorist, 192, "Mali", 1583.1284, 1117.3468, 26.7467, 0.0, COLOR_TERRORIST, WEAPON_AK47, 1559.0, 861.5, 1788.0, 1132.5}
};
public OnGameModeInit()
{
for(new i = 0; i != sizeof INFO_NPC_SERVER; i ++)
{
new npcid;
new str[250], player_id = INVALID_PLAYER_ID;
format(str,sizeof(str),"%s(%d)",INFO_NPC_SERVER[i][npc_NAME],MAX_PLAYERS-(i));
npcid = FCNPC_Create(str);
FCNPC_Spawn(npcid, INFO_NPC_SERVER[i][npc_SKIN], INFO_NPC_SERVER[i][npc_X], INFO_NPC_SERVER[i][npc_Y], INFO_NPC_SERVER[i][npc_Z]);
FCNPC_SetWeapon(npcid, INFO_NPC_SERVER[i][npc_WEAPON]);
FCNPC_SetAmmo(npcid, 999999);
FCNPC_SetInvulnerable(npcid, true);
SetPlayerColor(npcid, INFO_NPC_SERVER[i][npc_COLOR]);
INFO_NPC_SERVER[i][npc_ZONE_ID] = CreateDynamicCircle(INFO_NPC_SERVER[i][npc_ZONE_MINX], INFO_NPC_SERVER[i][npc_ZONE_MINY], INFO_NPC_SERVER[i][npc_ZONE_MAXX], 0, 0);
if(player_id == INVALID_PLAYER_ID) continue;
INFO_PLAYER_NPC[player_id][pnpc_IS_FROM_THE_TEAM] = INFO_NPC_SERVER[i][npc_IS_FROM_THE_TEAM];
}
return 1;
}
public OnPlayerEnterDynamicArea(playerid, areaid)
{
for(new i = 0; i != sizeof INFO_NPC_SERVER; i ++)
{
if(areaid == INFO_NPC_SERVER[i][npc_ZONE_ID])
{
new Float:X, Float:Y, Float:Z;
GetPlayerPos(playerid, X, Y, Z);
if(FCNPC_IsDead(i)) return 1;
if(IsPlayerInRangeOfPoint(i, 50.0, X, Y, Z))
{
if(PLAYER_TEMP[playerid][t_TEAM_PLAYER] == INFO_PLAYER_NPC[playerid][pnpc_IS_FROM_THE_TEAM]){}else{FCNPC_MeleeAttack(i, 500);}
}
}
}
return 1;
}
|
|
|
[0.3DL] GTA Legacy |
Posted by: Torque - 2025-02-21, 10:12 PM - Forum: Advertisements
- No Replies
|
 |
🌟 GTA LEGACY – THE ULTIMATE HEAVY ROLEPLAY EXPERIENCE 🌟
Welcome to GTA Legacy, a heavy roleplay server set in Los Santos County (Red County & Flint County) in 2025. Immerse yourself in a world where every action shapes your story. Whether you're chasing the American Dream or running from the law, your choices define your fate.
🔹 REAL JOBS, REAL ECONOMY
Work as a Trucker, Warehouseman, or Garbageman, or start your own business and watch it grow. Players drive the economy—supply, demand, and competition matter.
🔹 LAW ENFORCEMENT & JUSTICE SYSTEM
Enforce the law as part of the Los Santos County Sheriff's Department or San Andreas State Parks Ranger, tackling crime, patrolling wilderness areas, and keeping the county safe. End up on the wrong side of the law? Our prison system ensures every crime has consequences.
🔹 PLAYER-OWNED BUSINESSES & UNOFFICIAL FACTIONS
From nightclubs to auto shops, create and manage your own business. Form your own faction, from street gangs to organised crime—your influence is only limited by your ambition.
🔹 CUSTOMISATION LIKE NEVER BEFORE
🔸 Furniture System – Design your home, shop, or office.
🔸 Custom Skins & Models – Players can submit their own skins for personal use, making characters stand out in the world.
🔹 A LIVING, BREATHING ROLEPLAY EXPERIENCE
With an active community, engaging scripts, and an ever-evolving world, GTA Legacy delivers a next-level RP experience.
🚀 Your story starts now! Join us at gtalegacy.com and begin your journey today!
|
|
|
SA-MP Problem |
Posted by: gregorymorris - 2025-02-21, 04:21 AM - Forum: General Discussions
- No Replies
|
 |
Hello,
As i was inactive for personal reasons i came back today, launched SA-MP and press on Connect on GamerX Server.
The colored task bar and everything always happens when i launch SA-MP and GTA SA don't open so fast it needs like 2 minutes to open, but if i press connect again it opens. When i press Connect again now the game crash and it don't start.
I did compatibility mode and the game finally ran but too slow and my settings are not loaded up.
Crash log:
Code:
Code: SA-MP 0.3.7
Exception At Address: 0x00746929
Base: 0x036F0000
Registers:
EAX: 0x00000000 EBX: 0x00000000 ECX: 0x0000002F EDX: 0x0000002E
ESI: 0x00000000 EDI: 0x76C7D9A3 EBP: 0x0022FF88 ESP: 0x0022FDD8
EFLAGS: 0x00010246
Stack:
+0000: 0x00748732 0x7FFFF000 0x016D0000 0x00000000
+0010: 0x00828CB3 0x00856C80 0x008A5A08 0x7FFFF000
+0020: 0x008A5A10 0x008E3200 0x00856C80 0x7FFFF000
+0030: 0x008A5A08 0x0022FE18 0x0082AD25 0x00C9AD08
+0040: 0x0022FE54 0x00823B3E 0x00000008 0x00821D1D
+0050: 0x00821D17 0x008A5A10 0x008A5A08 0x7FFFF000
+0060: 0x00856C80 0x0022FE2C 0x00825EA4 0x76C7D9A3
+0070: 0x00000000 0x7FFFF000 0xFFFFFFFF 0x00821D17
+0080: 0x00000065 0x00000065 0x0022FF88 0x008246F1
+0090: 0x00400000 0x00000000 0x01942171 0x0000000A
+00A0: 0x00000094 0x00000006 0x00000001 0x00001DB1
+00B0: 0x00000002 0x76726553 0x20656369 0x6B636150
+00C0: 0x00003120 0x00000000 0x00000000 0x00000000
+00D0: 0x00000000 0x00000000 0x00000000 0x00000000
+00E0: 0x00000000 0x00000000 0x00000000 0x00000000
+00F0: 0x00000000 0x00000000 0x00000000 0x00000000
+0100: 0x00000000 0x00000000 0x00000000 0x00000000
+0110: 0x00000000 0x00000000 0x00000000 0x00000000
+0120: 0x00000000 0x00000000 0x00000000 0x00000000
+0130: 0x00824588 0x00000000 0x00000000 0x7FFFF000
+0140: 0xC0000005 0x00000000 0x01942171 0x00000044
+0150: 0x0196B6F8 0x0196B4E0 0x0196CA28 0x00000000
+0160: 0x00000000 0x00000000 0x00000000 0x00000000
+0170: 0x00000000 0x00000000 0x00000000 0x00000000
+0180: 0x00000000 0xFFFFFFFF 0xFFFFFFFF 0xFFFFFFFF
+0190: 0x00000000 0x00000000 0x0022FE78 0x0022F9E4
+01A0: 0x0022FFC4 0x00825EA4 0x00888078 0x00000000
+01B0: 0x0022FF94 0x76C7EE1C 0x7FFFF000 0x0022FFD4
+01C0: 0x76E437EB 0x7FFFF000 0x76C7CDA8 0x00000000
+01D0: 0x00000000 0x7FFFF000 0x00000000 0x00000000
+01E0: 0x00000000 0x0022FFA0 0x00000000 0xFFFFFFFF
+01F0: 0x76DFE115 0x00062004 0x00000000 0x0022FFEC
+0200: 0x76E437BE 0x00824570 0x7FFFF000 0x00000000
+0210: 0x00000000 0x00000000 0x00000000 0x00824570
+0220: 0x7FFFF000 0x00000000 0x78746341 0x00000020
+0230: 0x00000001 0x00003020 0x000000DC 0x00000000
+0240: 0x00000020 0x00000000 0x00000014 0x00000001
+0250: 0x00000007 0x00000034 0x0000017C 0x00000001
+0260: 0x00000000 0x00000000 0x00000000 0x00000000
+0270: 0x00000000 0x00000002 0x1A26EF4E 0x00000298
SCM Op: 0x0, lDbg: 0 LastRendObj: 0
Game Version: US 1.0
Hopes anyone knows a solution.
|
|
|
|