Re: Dъvidas Curtas #1 -
C4rtm4n - 08.11.2017
Quote:
Originally Posted by F1N4L
Alguйm sabe como libera as garagens de tunagem pra qualquer veнculo?
|
ACHO que nativamente nгo tem com,tente criar elas in game.
Re: Dъvidas Curtas #1 - Jelly23 - 08.11.2017
Quote:
Originally Posted by F1N4L
Alguйm sabe como libera as garagens de tunagem pra qualquer veнculo?
|
Isso vai requerir modificaзхes no cliente, pois as garagens nгo sгo controladas pelo servidor.
Re: Dъvidas Curtas #1 -
Marllun - 08.11.2017
qual й o id do alarme do banco
https://www.youtube.com/watch?v=ZH57Yfdkhmg
Re: Dъvidas Curtas #1 -
IlanZ - 09.11.2017
Quote:
Originally Posted by Marllun
|
42801
Re: Dъvidas Curtas #1 -
Coudy - 09.11.2017
Muito bom
Re: Dъvidas Curtas #1 -
Abne - 09.11.2017
----------
Loaded log file: "server_log.txt".
----------
SA-MP Dedicated Server
----------------------
v0.3c, ©2005-2010 SA-MP Team
filterscripts = "" (string)
Server Plugins
--------------
Loaded 0 plugins.
Started server on port: 7777, with maxplayers: 5 lanmode is ON.
Filter Scripts
---------------
Loaded 0 filter scripts.
Script[gamemodes/abne.amx]: Run time error 19: "File or function is not found"
Number of vehicle models: 0
Ta dando esse erro quando executo o server, me ajudem
Re: Dъvidas Curtas #1 -
B4dSh33p - 17.11.2017
Como faзo para verificar em loop o jogador com menor nнvel para o jogador com maior nнvel?
Re: Dъvidas Curtas #1 -
ViniBorn - 17.11.2017
Quote:
Originally Posted by B4dSh33p
Como faзo para verificar em loop o jogador com menor nнvel para o jogador com maior nнvel?
|
PHP Code:
new MaiorID, MenorID, Maior = 0, Menor = 10000000;
for(new v; v != GetPlayerPoolSize()+1; v++)
if(IsPlayerConnected(v))
{
if(GetPlayerScore(v) > Maior)
{
Maior = GetPlayerScore(v);
MaiorID = v;
}
else if(GetPlayerScore(v) < Menor)
{
Menor = GetPlayerScore(v);
MenorID = v;
}
}
printf("Maior level: %d | ID do jogador: %d", Maior, MaiorID);
printf("Menor level: %d | ID do jogador: %d", Menor, MenorID);
Re: Dъvidas Curtas #1 -
ViniBorn - 17.11.2017
Quote:
Originally Posted by Misael
PHP Code:
C:\Users\dade\Desktop\samp server\modulos\teste.pwn(3) : fatal error 100: cannot read from file: "YSI\y_hooks"
o y_hooks estб nas includes mas nгo funciona, alguйm jб passou por isso e sabe resolver?
|
Vocк tem mais de uma pasta pawno no seu computador?
Se for o caso, abra o pawno pela pasta onde estб seu GM, e depois selecione o GM desejado.
Re: Dъvidas Curtas #1 -
Marllun - 19.11.2017
Como geta uma string pelo mysql
Re: Dъvidas Curtas #1 -
C4rtm4n - 19.11.2017
Quote:
Originally Posted by Marllun
Como geta uma string pelo mysql
|
https://sampwiki.blast.hk/wiki/MySQL#mysql_get_charset
Acho que й assim.
Re: Dъvidas Curtas #1 -
SammyJ - 19.11.2017
Quote:
Originally Posted by Marllun
Como geta uma string pelo mysql
|
depende da versгo, e se vocк estivar falando em mysql para Pawn.
PHP Code:
cache_get_value_name(row, filedname[], value[], len = sizeof(value));
cache_get_value_name(0, "username", pName, sizeof(pName));
Re: Dъvidas Curtas #1 -
DelK - 19.11.2017
Quote:
Originally Posted by Marllun
O que estб errado
PHP Code:
//error 035: argument type mismatch (argument 1)
PHP Code:
SendMail(cache_get_value_name(0, "SAIDOSERVER", zsl, sizeof(zsl)), SERVEREMAIL, NOMESERVER, "TTT", stringgg);
|
Os parвmetros do sendmail
Code:
SendMail( to[], sender_email[], sender_name[], subject[], message[] );
Re: Dъvidas Curtas #1 -
axellech - 19.11.2017
Sobre objetos, deixa todos os objetos do servidor com o drawdistance de
1000.00 atrapalha alguma coisa?
Re: Dъvidas Curtas #1 -
BuDweiSeR - 19.12.2017
Como aumentar o limite de MapIcons ?
Re: Dъvidas Curtas #1 -
Marllun - 19.12.2017
Testa aн
//Nгo sei ser funciona
PHP код:
#define MAX_MAP_ICONS 100
Olha os limites do samp versгo 0.3.7
https://sampwiki.blast.hk/wiki/Limits
Aconselho vocк a usar streamer.
Re: Dъvidas Curtas #1 -
BuDweiSeR - 19.12.2017
Qual streamer?
Re: Dъvidas Curtas #1 -
Marllun - 19.12.2017
https://sampforum.blast.hk/showthread.php?tid=102865
PHP код:
CreateDynamicMapIcon(Float:x, Float:y, Float:z, type, color, worldid = -1, interiorid = -1, playerid = -1,
Float:streamdistance = STREAMER_MAP_ICON_SD, style = MAPICON_LOCAL, areaid = -1, priority = 0)
DestroyDynamicMapIcon(iconid)
IsValidDynamicMapIcon(iconid)
Re: Dъvidas Curtas #1 -
BuDweiSeR - 19.12.2017
Marllun poderia me ajudar? Explicar o codнgo acima e onde coloco pois sou novato nгo tenho muito conhecimento ainda sobre a linguagem.
Re: Dъvidas Curtas #1 -
Marllun - 19.12.2017
PHP код:
CreateDynamicMapIcon(Float:x, Float:y, Float:z, type, color, worldid = -1, interiorid = -1, playerid = -1, Float:streamdistance = 100.0, style = MAPICON_LOCAL);
x - 1
y - 2
z - 3
tipo 4
cor - 5
mundoid- 6
interior - 7
playerid - 8
stramdistancia - 9
tipo - 10