Search Results
Код: CMD:stats(playerid, params[]) { new oplayerid; if(sscanf(params, "u", oplayerid) { ShowStats(playerid); } else { if(!IsPlayerConnected(oplayerid)) return SendClientMessage(playerid...
150
Quote: Originally Posted by mmlinaric I wanted to know is this server using some custom GameTexts or TextDraws. There are only 4 styles in GameText other than those are textdraws. https...
204
Quote: Originally Posted by mmlinaric Yeah, I know textdraw editors and what are textdraws. I just wanted to know are this textdraws or gametexts. Thank you. What you mean by "I just wa...
204
Show your textdraw code or try to increase the string size!
145
Quote: Originally Posted by mmlinaric Yeah, I know textdraw editors and what are textdraws. I just wanted to know are this textdraws or gametexts. Thank you. That is a textdraw!
204
You have to use float datatype instead of int datatype. pawn Код: mysql_format(mysql, szQuery, 256, "UPDATE `jobs` SET `PosX` = '%0.2f' , `PosY` = '%0.2f' , `PosZ` = '%0.2f' WHERE `ID` = '%d'", X...
108
Introduction What kind of Minigames Next Evolution Freeroam Have? You can play variety of minigames and modes like GunGame,Minigun,WAR,DM1-7,Deagle DM ,Sawn DM ,Sniper DM ,Fallout,Derby with lots of...
394
pawn Код: #include <a_samp>new Text:Textdrawdot;new Text:Textdrawname;new AutoMessageNum = 0;public OnFilterScriptInit(){Textdrawname = TextDrawCreate(243.500000, 404.250000, "FastAndFurious...
122
it should be Delete3DTextLabel since you aren't creating a CreateDynamic3DTextLabal. pawn Код: if(PointInfo[id][point_text] != -1){         Delete3DTextLabel(PointInfo[id][point_text]); }
76
pawn Код: new string[256];    if(CosminInfo[playerid][GangID] == 0)    {       format(string, sizeof string, "{F81414}None");    }    else format(string, sizeof string, "%s", GangInfo[...
94
Код: CreateHouse("House 1", 35000 ,-3724.7620, -1651.9816, 4.4582, 442.8380, 508.8443, 1000.3121, 1, 25000);//1795
224
pawn Код: new timercount[MAX_PLAYERS] = 0;//In the commandtime[targetid] = 3600000;timercount[targetid] = SetTimerEx("CountTimer", 1000, true, "i", targetid);//functionforward CountTimer(playerid)...
193
pawn Код: CMD:setskin(playerid, params[]) {     new targetid, skinid, str[90], name[MAX_PLAYER_NAME];     if(sscanf(params, "ii", targetid, skinid))      return SendClientMessage(playerid, ...
187
make a column in your users table like jailed and update it to 1 when you jail a player. Under your userdataload, load the column data and under OnPlayerSpawn callback check whether the player is ja...
119
Create Textdraw using textdraw editor - https://sampforum.blast.hk/showthread.php?tid=442095 Create the textdraw as global. Now after creating the textdraw. 1) Place the textdraw Under OnGamemodeIni...
84
Quote: Originally Posted by GeorgeLimit how about it? Check this https://sampforum.blast.hk/showthread.php?tid=256961
210
There will be no issues. Use CreateDynamicObject.
277
Quote: Originally Posted by GeorgeLimit error pawn Код: C:\Users\Angga\Desktop\SAMP server\gamemodes\LAFR.pwn(134) : error 017: undefined symbol "Textdraw1"C:\Users\Angga\Desktop\SAMP ...
210
Quote: Originally Posted by GeorgeLimit whare I can place Place the textdraw in OnGamemodeInit and show the textdraw in OnPlayerConnect. pawn Код: public OnGamemodeInit(){Textdraw1...
210