Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 327 online users. » 1 Member(s) | 324 Guest(s) Bing, Google, daniscript18
|
Latest Threads |
White Screen
Forum: Support
Last Post: Phat202146_real
Yesterday, 02:50 PM
» Replies: 0
» Views: 21
|
Offensive-Core: TDM
Forum: Gamemodes
Last Post: threezhang.cn
Yesterday, 09:54 AM
» Replies: 5
» Views: 934
|
Outstanding Customer Serv...
Forum: Chat
Last Post: va6220902
Yesterday, 07:52 AM
» Replies: 0
» Views: 28
|
New place
Forum: Life
Last Post: sjaardamilly
Yesterday, 06:58 AM
» Replies: 0
» Views: 20
|
How Zhewitra Oral Jelly W...
Forum: General Discussions
Last Post: erctilenovus
2024-11-20, 08:39 AM
» Replies: 0
» Views: 26
|
Cenforce 100 Mg Medicine ...
Forum: Chat
Last Post: ezraallen45ea
2024-11-19, 10:00 AM
» Replies: 0
» Views: 35
|
I get error 021 using y_h...
Forum: Pawn Scripting
Last Post: daniscript18
2024-11-18, 11:34 PM
» Replies: 0
» Views: 40
|
What is the use of Wakler...
Forum: Other
Last Post: allencooper
2024-11-18, 10:37 AM
» Replies: 0
» Views: 24
|
Il reste des français sur...
Forum: French/Fran?ais
Last Post: tysanio
2024-11-18, 05:39 AM
» Replies: 2
» Views: 439
|
How to sell a vehicle sam...
Forum: Chat
Last Post: irislime1209
2024-11-16, 08:44 AM
» Replies: 3
» Views: 1,209
|
|
|
[MODDING] the rookie smoke |
Posted by: SmoKe - 2019-04-14, 03:37 AM - Forum: Videos and Screenshots
- Replies (13)
|
|
I will be uploading my skins, objects and everything I do in 3ds max. You can contact me my discord.?SmoKe#1675
Credits:?SmoKe, Saturno, r*
Credits: SmoKe, Saturno, r*
Credits: SmoKe, Saturno, r*
Credits: SmoKe, Saturno, r*
Credits: SmoKe, r*
Credits: SmoKe, r*
Credits: SmoKe, Murriix, r*
Credits: SmoKe, Murriix, r*
Toys objects - US. Army
Credits: SmoKe, r*
Credits: Murriix, r*
Credits: Blitz88, r*
Credits: SmoKe, r*
Credits: SmoKe, Murriix, r* - version adapted to my character - training uniform
Credits: SmoKe, r* - combat uniform
Credits: SmoKe, Murriix, r* - version adapted to my character - service uniform
Credits: SmoKe, Murriix, r* - training uniform
Credits: SmoKe, Murriix, r*
Credits: SmoKe, Murriix, r* - new version of the exercise skin
|
|
|
???????????! ???????? ????! |
Posted by: Hypeak - 2019-04-14, 03:23 AM - Forum: Russian/???????
- Replies (18)
|
|
? ????????? ??????? ???????????
????????? ?? ?????? ???????? https://www.burgershot.gg/usercp.php?action=avatar, ????????? ??????????? ? ???????? ????, ? ?? ????????? - ????????
PossData "??? ???????????? ?????? ???????? .100x100 ????????
???????, ?????? ?? ?????????? 4,91 ".
????? 100x100 ??????????? en Google.
____________________________________
?????? ???????????? - 4,91 ??.
?????? ???
| ??? ??? ???????? ??? ????? ??????????? ?????? ??? Gmail?
??????: https: // www.burgershot.gg/usercp.php?action=email. ??????? ???? ??????, ??????? ????? Gmail, y ????? ????? ??? ?? ????? Gmail. ? ????????
______________________
??????????? 3
??? ??? ??????? ???????? ? ? ???????? ????????????
???????? ?? ????????? ???????? ????: https://www.burgershot.gg/usercp.php??? ???????? [img] (??? URL) [/ img] Ejm: [Imagen: m] sandim.jpg
__________________________
??????????? 4
???????? ?????? ?????
????? ??? ????????? ????????, uno: https://www.burgershot.gg/usercp.php?action=profileY, ????? ????????? ????, ??? ???????? ???-??, ??? ??????? ?????????, ? ???????? ???, ??????? ??? ???????????? ? ?????????????? ???, ????????? ?????????. ?? ???? ????, ????? ???????, ???????, ??????? ? ?. ?., ?? ? ?????, ??? ????????? ??????? ????????? || Director | ??? ????? ????????? ?
??????????? 5:
_____________________
?????? ???? ??? ? "edad"
????????? ?? ????????? ????????: https://www.burgershot.gg/usercp.php=action=profile
??????????? 6 :
___________________
?????? ? ???? ???????? ???? ?????? ? ??????? ?? ????????? ????????: https: //www.burgershot.gg/usercp.php? ??????, ?? ??????? ???? ??????, ? ????? ?????? ??????? ????? ?????? ????? ? ?????, ? ???!
???????: Hypeak
PossData: Mensajes ??? ??????????? de ??????, ??????? ?????? ? UNA ??? ???????? ?????????, ???????? ??, ????????? ???, ????? ?????? ? ????? ???????????, ???? ???
?
?????: ??????????? posts de ???????? ??????? ???????.
100% ?????????? ?????????
|
|
|
[GU?A] Usos de switch. |
Posted by: klays - 2019-04-14, 03:19 AM - Forum: Programaci?n
- Replies (11)
|
|
switch, usos.
Para Variables globales.
Primero hay que tener una variable creada, para testear puedes probar con esto:
PHP Code: new randomnumber = random(4);
Luego de eso creamos el switch, puede ser llamado cuando se ejecute un comando, por ejemplo.
PHP Code: switch(randomnumber)
{
? ??case 0: print("el numero es 0.");
? ? case 1: print("el numero es 1.");
? ? case 2: print("el numero es 2.");
? ? case 3: print("el numero es 3.");
? ? default: print("el n?mero no es reconocido.");
}
Esto significar?, si la variable (randomnumber) es igual a x (el n?mero aleatorio de 0 a 3) imprimir? cierto valor (print).
Para variables del jugador.
Primero hay que crear la variable:
PHP Code: new variable[MAX_PLAYERS];
Luego de eso, el switch, puede ser llamado desde un comando, por ejemplo:
PHP Code: switch(variable[playerid])
{
? ??case 0:
? ? {
? ? ? ? SendClientMessage(playerid, -1, "tu variable es 0.");
? ? ? ? // resto de c?digo en caso de ser necesario.
? ??}
? ? case 1:
? ? {
? ? ? ??SendClientMessage(playerid, -1, "tu variable es 1.");
? ? ? ??// resto de c?digo en caso de ser necesario.
? ? }
? ??case 2:
? ? {
? ? ? ??SendClientMessage(playerid, -1, "tu variable es 2.");
? ? ? ?// resto de c?digo en caso de ser necesario.
? ? }
? ? default:
? ? {
? ? ? ? SendClientMessage(playerid, -1, "...");
? ? ? ? // resto de c?digo en caso de ser necesario.
? ? }
}
En resumen, si la variable?(variable) del jugador?es igual a x (numero asignado) mendar? cierto mensaje y ejecutar? cierta funci?n seg?n el case.
default: es llamado cuando ning?n case (tras comprobarlos) es igual a la variable, ejemplo:
PHP Code: new dos = 2;
switch(dos)
{
? ? case 0: print("numero 0.");
? ? case 1: print("numero 1.");
? ? case 2: print("numero 2.");
? ? case 3: print("numero 3.");
? ? default: print("numero x");
}
En el ejemplo anterior la variable es igual a 2, por lo tanto ejecutar? el case 2, en resumen imprimir? numero 2 en la consola, pero en el siguiente ejemplo:
PHP Code: new dos = 2;
switch(dos)
{
? ? case 0: print("numero 0.");
? ? case 1: print("numero 1.");
? ? default: print("numero x");
}
la variable es igual a dos, dentro del switch no hay ning?n case con valor 2 por lo tanto se ejecutar? el default. Por lo tanto imprimir?: numero x en la consola.
Para resumir default es invocado cuando ning?n case cumple con la variable.
__
Rangos de comprobaciones.
Para n?meros consecutivos: puedes comprobar m?s de un (1) solo n?mero en el case (definimos case como: case: 1, etc?tera) con:
PHP Code: case 1 .. 4: // resto del c?digo.
Un ejemplo para esto es lo siguiente:
PHP Code: new variable = random(51);
switch(variable)
{
? ? case 1 .. 10: print("el numero est? entre el 1 al 10.");
? ??case 11 .. 20: print("el numero est? entre el 11 al 20.");
? ? case 21?.. 30: print("el numero est? entre el 21?al 30.");
? ? case 31?.. 40: print("el numero est? entre el 31 al 40.");
? ? case 41?.. 50: print("el numero est? entre el 41 al 50.");
? ? default: print("el numero esta en un rango del 0 al 50.");
}
(cr?ditos/idea: autorojo) | En resumen, si la variable se establece en un n?mero entre 1 y 10 imprimir?: el n?mero est? entre el 1 al 10 y as? consecutivamente dependiendo del case. En caso de que ninguno est? en lo correcto se ejecutar? default.
Para n?meros distintos: puedes comprobar distintos n?meros que no est?n de forma consecutiva de la siguiente forma:
PHP Code: case 1, 3,?7: // resto del c?digo.
Para explicar, si la variable es igual a 1, 3 ? 7 ser? ejectuada la funci?n que esta contenga, ejemplo:
PHP Code: new variable = random(10);
switch(variable)
{
? ? case 1, 3, 7: print("el numero puede ser 1, 3 o 7.");
? ??case 2, 4, 6: print("el numero puede ser 2, 4 o 6.");
? ? default: print("el numero puede ser 0 o 5.");
}
Para resumir, el case 1, 3, 7 se ejecutar?n si el n?mero aleatorio es igual a cualquiera de esos 3 y as? con los dem?s, caso contrario se ejecutar? el default (n?mero 0 y 5, los restantes).
__
post en edici?n.
|
|
|
Custom Player Nametags (with HP/armor bars) |
Posted by: nize - 2019-04-14, 03:13 AM - Forum: Filterscripts
- Replies (15)
|
|
CUSTOM PLAYER NAMETAGS
This filterscript prevents the famous cleo nametag wallhacks and FakeNick hacks(for fake screenshots/complaints), however this will not affect s0beit nametags
New Include Version(edited by?Bork):?GitHub
NOTE:
- If you're using the filterscript version, make sure to disable the default nametags in your gamemode!
Place this under OnGameModeInit (no longer needed in the include version)
- The dot characters don't work well with UTF-8.
So if you ever encounter this bug
Just use another encoding method in your text editor/IDE (ANSI works for me)
>> https://imgur.com/a/elRv1gn
|
|
|
Guide Epic Open me! |
Posted by: Hypeak - 2019-04-14, 03:10 AM - Forum: General Discussions
- Replies (5)
|
|
Good. What does your guides mean? Well look, there are many new evolution users and they ask themselves: How do I change the image? Answer:
Go to the page https://www.burgershot.gg/usercp.php?action=avatar download a file and select file
PossData: "The maximum dimensions for avatars are: 100x100 pixels.
The maximum file size for avatars is 4.91 MB. "
Search for 100x100 images in google.
____________________________________
The maximum is 4.91 MB.
Second guide
| How do I change my email - email - gmail? |
The method is on the following page: https://www.burgershot.gg/usercp.php?action=email Enter your password, then put the new gmail and then again the new gmail. And Update
______________________
Guide 3
How do I get a SIGNATURE? Like the one of several people?
Easy! go to the next page: https://www.burgershot.gg/usercp.php?action=editsig and comment and write with all that And if I want an image? You put [img] (Here you put the URL) [/ img] Ejm: [Image: m] sandim.jpg
__________________________
Guide 4
Get personalized title.
Simple! Go to the next page: https://www.burgershot.gg/usercp.php?action=profile And then go down to where it says Custom Title and edit it to your liking you can say Green, Gei, etc. but I think it is INAPPROPRIATE Putting yourself | OWNER || Director | Etc.
Guide 5:
_____________________
Put on sex, age everything!
Go to the next page: https://www.burgershot.gg/usercp.php?action=profile and write down your data EVERYTHING DEPENDED On you if you reveal a personal data you are risking cyber threats or as in Colombia "Ciber papaya "
Guide 6:
___________________
Change my password
Help I put a password that is simple or they threatened me and we said they know my password!
WHAT I DO? Now change your password and go to the next page: https://www.burgershot.gg/usercp.php?action=password put your password, the new and again the new and now!
Credits: Hypeak
PossData: This is the forum's guide, then when the platform opens, open guides if you want to comment on a guide, come here
?
Coming soon: Guide how to create a discord server.
If you want to publish a guide that you expect.
|
|
|
Bem-vindos! |
Posted by: CaioTJF - 2019-04-14, 02:46 AM - Forum: Portuguese/Portugu?s
- Replies (35)
|
|
Fala galera!
Bem-vindos ao f?rum burgershot.gg, lugar criado para jogadores de SA-MP conversarem sem restri??es alguma (sem as rid?culas regras do f?rum do SA-MP), por?m, devido aos ?ltimos acontecimentos, esse f?rum tamb?m ser? usado pelo projeto Open.MP
Uma explica??o r?pida do projeto:
O Open.MP ? um projeto que j? est? em andamento. No momento estamos terminando a primeira parte, que ? o software do servidor. Diversas falhas conhecidas do SA-MP foram corrigidas, e apesar de n?o estar 100% completo, j? existem prot?tipos funcionando e espera-se que os propriet?rios de servidores migrem pouco a pouco. Depois disso, vir? o cliente, que ir? conter atualiza??es com novos conte?dos. Mas o foco atual ? deixar compat?vel com o SA-MP para que os servidores migrem para c?.
Alguns pontos que valem ser destacados:
- Voc? ir? conseguir rodar seu servidor do SA-MP no Open.MP;
- Pela primeira vez, a comunidade brasileira ter? uma voz ativa.
Quem quiser ajudar aqui na Board, sinta-se a vontade para enviar MP.
Irei complementando o t?pico aos poucos, qualquer d?vida, s? falar.
Para saber e entender mais, leia esse post do Y_Less, l?der do projeto:
(2019-04-13, 04:01 PM)Y_Less Wrote: Time for my side I believe. ?You are all partially right, but not in the ways you may think. ?I am not trying to split the community, I am not trying to start a rival to SA:MP, and one important side point: I am not stealing anyone's code. ?You all think the cat is out of the bag because of one poorly worded post missing all context of the conversation it was a part of. ?You got a peek in to the bag and think the whole thing is stupid, which is understandable given the lack of information. ?I was trying to give the important points without revealing too many details, unfortunately that backfired because now you only have half a story from which to draw conclusions.
So let's put it all out there.
I am not trying to split the community. ?However, someone IS trying to destroy it - they have hoarded information, withheld long sought updates, threatened to delete the whole forums (last week), and bans anyone who says that maybe that's not great. ?This person has already split the community - releasing two separate parallel versions of the mod, then wondering why uptake on one was not as all-encommpasing as originally envisioned. ?For over a year people have asked for 0.3.7 and 0.3dl to be merged, while he just sat there and wondered if there was actually anyone that wanted it. ?He has said that he believes the community is dying, SA:MP is dying, and only has a year or two left; and is content to just watch it happen. ?Some of us disagree and have tried to convince him to do something - either carry on or pass on the reigns. ?The community shrinking is probably inevitable, but it will only die if not supported - and that's what happening right now.
There is an unofficial discord, where yes people sometimes have fun and joke around with each other. ?But it wasn't founded as a place for rebellion. ?It came in to being because people liked SA:MP, and people use Discord, thus the community naturally wanted to combine both. ?There's an unofficial forums, Kalcor himself has previously said if you don't like these ones, make your own, but now bans those that do. ?However neither the forums nor the discord are run by me. ?They are simply a result of the official areas failing to move forward. ?That's not splitting, that's progressing.
I am not trying to start a rival to SA:MP. ?Two of the words there are wrong "start", and "rival". ?I'm not "starting" anything, I was trying to gauge further interest in a project well under way. ?These are the commits from just the last year:
There's nothing new about this, so what is this? ?And why is it not a rival?
I did once leave SA:MP, yes, but that was 6 years ago - get over it!
I am not betraying SA:MP, and I am not betraying Kalcor - he is the one betraying SA:MP, but most people are unable to separate the two. ?Yes, he founded it, but that doesn't make it his. ?Hundreds of other people have spent countless hours/days/weeks/YEARS working on this, making it what it is today, but just because Kalcor has sole access to one little part - the server code, he believes he is the most important part and can dictate where it goes and when it stops. ?In the beginning yes, he did most of the work, but ask yourself who you honestly believe has done more for this mod in the last few years - Kalcor or any one of these people:
We don't want to usurp him, we don't want to belittle him or his contributions. ?He founded this mod, he got people involved, but all those other people helped him bring it to where it is today, and it is those people - the community, who are being repressed and ignored. ?I've tried to act as a mediator, brining Kalcor's views to people, and the community's views to him, and have received endless flak from both sides for it. ?I've also tried repeatedly to have Kalcor pass running/updating the mod on to someone else (not necessarily me, but there's no-one else stepping up). ?What were the responses?
He doesn't believe I'm capable of adding major new features. ?Of course he isn't adding any either, and actually doesn't believe there are any to be added, so why would that matter?
He wanted a plan. ?My main priorities were to fix bugs, improve the obvious gaps in the API, and create a better platform for other languages - i.e. a proper C/plugin API. ?Not even difficult tasks and ones I've more than shown I'm capable of. ?But apparently that doesn't qualify as a plan.
In his words exactly "they don't deserve it". ?That's what he thinks of this community that apparently I am the one trying to split up, and the idea of someone trying to carry it on.
No-one minds if he wants to quit, that's blatantly obvious and perfectly natural. ?We object to him taking everything else down with him. ?This is a community - it is a great community with a lot of very good long-time friends, centered around a close-source mod with a paranoid controlling leader. ?We want to move this center, that's all. ?We don't want to destroy SA:MP, we don't want to split the community (this got found out because I was trying to involve the long ignored Russian community, thus bring back in people already split off), we want to ensure its continuation - because Kalcor doesn't.
So I give you:
open.mp
That's the project (and domain, the burger-shot forums were just a temporary until we got the real one up, which hasn't happened yet). ?A team of TWENTY-TWO of the top people from San Andreas Multiplayer - server owners, scripters, testers, and other community leaders working together to recreate the whole thing from the ground up. ?Making a new forum is easy; the thing that always cemented Kalcor's control was his sole access to the mod source. ?There is a leaked version, but from the start I made it absolutely clear that we would take the high road in this regard and flat out refuse to use that in any way what so ever. ?So we have been reimplementing the whole thing from scratch. ?We originally wanted to release a full 1.0 version out of the blue, with that announcement being the first anyone heard of it, but that's not going to happen now. ?But it isn't too far off.
There have been forks, but they had two major problems: 1) They used the stolen code, something we don't, and 2) They were trying to reinvent the wheel, new scripting languages, totally different features, etc. ?We are making this fully backwards-compatible. ?You could switch your server over to ours, running the same script, and your players wouldn't even notice. ?There are of course plans for new features and improvements over time, but for now the focus is on backwards-compatibility, stability, and bug fixes (fixes we as a community have already done before because Kalcor wouldn't).
I tried very hard for over a year to work WITH Kalcor on improving SA:MP, I just happened to have a backup plan. ?So you can stick with him if you believe his approach is about to change and suddenly updates will happen (and if this debacle forces that, then we actually succeeded in the original goal). ?Or you can stick with the majority of the community, who know there is a problem and want to fix it - those that have been there for you through all this, helping, teaching, hosting, and leading.
It's up to you to decide who you think has betrayed SA:MP... ?You know where to find us.
|
|
|
P?blica tus gu?as del Foro. |
Posted by: Hypeak - 2019-04-14, 02:32 AM - Forum: Spanish/Espa?ol
- Replies (7)
|
|
Buenas ?Qu? significa p?blico tus gu?as? Pues mira, hay muchos usuarios nuevos evoluci?n y se preguntan: Como me cambio la imagen Respuesta:?
Ve a la p?gina? https://www.burgershot.gg/usercp.php?action=avatar?descargar un archivo y dale a seleccionar archivo
PossData:? "Las dimensiones m?ximas para avatares son: 100x100 p?xeles.?
El tama?o m?ximo de archivo para avatares es de 4,91 MB. "
Busca imagenes 100x100 en google.
____________________________________
El m?ximo es 4,91 MB.
Segunda gu?a.
| ?Como cambio mi correo - email - gmail? |
El metodo est? en la siguiente p?gina:? https://www.burgershot.gg/usercp.php?action=email?Ingresas tu contrase?a, luego pones el gmail nuevo y luego otra vez el gmail nuevo. Y Actualizaci?n
______________________
Gu?a 3
?Como me pongo una FIRMA? Como la de varias personas?
?F?cil! vas a la siguiente p?gina:? https://www.burgershot.gg/usercp.php?action=editsig?y comentas y escribes con todo eso ?Y si quiero una imagen? pones?[img](Aqui pones la URL)[/img] Ejm :?sandim.jpg
__________________________
Gu?a 4
Ponerse T?tulo personalizado.
?Sencillo! Ve a la siguiente p?gina:? https://www.burgershot.gg/usercp.php?action=profile?Y luego bajas hasta donde dice? Titulo personalizado y lo editas a tu gusto puede decir Verde, Gei, etc pero creo que es INAPROPIADO Ponerse |DUE?O||Director|Etc.
Gu?a 5:
_____________________
Ponerme el sexo, edad todo!
Vas a la siguiente p?gina: https://www.burgershot.gg/usercp.php?action=profile?y anotas tus datos TODO DEPEND? De ti si revelas un dato personal te estas arriesgando a ciber amenazas o como en colombia das "Ciber papaya"
Gu?a 6:
___________________
Cambiar mi contrase?a
?Ayuda puse una contrase?a que es simple o me amenazaron y dijimos que saben mi contrase?a!
?QUE HAGO? ?Ahora cambia tu contrase?a y vas a la siguiente p?gina:? https://www.burgershot.gg/usercp.php?action=password?pones tu contrase?a, la nueva y otra vez la nueva y ?Ya!
Creditos: Hypeak
PossData: Esto es gu?a del foro luego cuando se abra la plataforma abran gu?as si quieres comentar una gu?a pues ven ac??
?
Proximamente: Gu?a de como crear un servidor de discord.
Si quieres p?blicar una gu?a que esperas.
?Que os parece!?
?Qu? les parece? es la duda definitiva.
|
|
|
|