#include <a_samp>new God[MAX_PLAYERS];public OnPlayerCommandText(playerid, cmdtext[]){if(!strcmp(cmdtext, \"/god\", true)){if(God[playerid] == 0) {God[playerid] = 1;SendClientMessage(playerid, -1, \"God mód bekapcsolva\");return 1;}if(God[playerid] == 1) {God[playerid] = 0;SendClientMessage(playerid, -1, \"God mód kikapcsolva!\");return 1;}return 1;}return 0;}public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart){if(God[playerid] == 1) return SetPlayerHealth(playerid, 100);return 1;}
CMD:god(playerid) {God[playerid] = !God[playerid];SendClientMessage(playerid, -1, !God[playerid]?(\"God mód kikapcsolva!\")\"God mód bekapcsolva!\"));return 1;}
Nem akarok Tapló lenni de szerintem ez felesleges !Már bocsi ... De a forumon van vagy 100 Halhatatlansági Parancs )Kezdő vagy értem nekem se ment jobban De valakinek tuti jól fog jönni mint a többi 100 God parancs!Ha megbántottalak akkor Sajnálom nem állt szándékomba !!
Nem akarok Tapló lenni de szerintem ez felesleges !Már bocsi ... De a forumon van vagy 100 Halhatatlansági Parancs )Kezdő vagy értem nekem se ment jobban De valakinek tuti jól fog jönni mint a többi 100 God parancs!Ha megbántottalak akkor Sajnálom nem állt szándékomba !! Igen. 100 \"god\" parancs, ami azt csinálja, hogy beállítja a játékos életét 99999-re. [/quote]Ez pedig csak a lövésektől véd meg, robbanástól és zuhanástól nem.
#define INFINITY (Float:0x7F800000)stock GodMode(playerid){ return SetPlayerHealth(playerid,INFINITY);}
public OnPlayerTakeDamage(playerid, issuerid, Float:amount, weaponid, bodypart){ if(God[playerid] == 1) return 0; else return 1;}
Segítek: #define INFINITY (Float:0x7F800000)stock GodMode(playerid){ return SetPlayerHealth(playerid,INFINITY);} A scripted eleve rossz, mert ha olyan damage-t kapsz, amely 100-nál nagyobb, akkor hiába adod neki vissza az életét, meg fog halni.
OnPlayerTakeDamage-et használj szerintem, és az élet több legyen mint 100, pl. 1000 vagy 10000
#define INFINITY (Float:0x7F800000)stock GodMode(playerid){ return SetPlayerHealth(playerid,INFINITY);} [/quote]Ezzel le van minden tudva.