
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

1
Script and Content Requests / Re: Urgent: RPG script
« on January 3rd, 2019, 12:53 AM »2
Script and Content Requests / Re: Urgent: RPG script
« on January 2nd, 2019, 03:12 AM »
Take a base and start making your server no one will give you anything ready, understand something good to have a server and create it. : D
3
Custom Content Releases / help-me PLS
« on December 6th, 2018, 10:44 PM »<objectlist>
<object id="0">
<flags value="0"/>
<texture path="alcatraz.txd"/>
<collision type="alcatraz1.col"/>
<model path="alcatraz.dff" distance="299"/>
</object>
<object id="1">
<flags value="0"/>
<texture path="alcatraz2.txd"/>
<collision type="dealcatraz.col"/>
<model path="alcatraz2.dff" distance="299"/>
</object>
</objectlist>
Eu tenho todos os arquivos, mas quando eu coloco o arquivo .col ele dá um erro, e quando eu colocá-lo para obter a colisão automática, o objeto é colidido, mas fica grampeado.
arquivos: https://www.sendspace.com/file/ho7db4
print: http://prntscr.com/lr6cyc
4
Support / Object error
« on December 5th, 2018, 07:11 PM »<objectlist>
<object id="0">
<flags value="0"/>
<texture path="alcatraz.txd"/>
<collision type="alcatraz1.col"/>
<model path="alcatraz.dff" distance="299"/>
</object>
<object id="1">
<flags value="0"/>
<texture path="alcatraz2.txd"/>
<collision type="dealcatraz.col"/>
<model path="alcatraz2.dff" distance="299"/>
</object>
</objectlist>
I have all the files but when I put the .col file it gives an error, and when I put it to get automatic collision the object is collided but it gets bugged.
files: https://www.sendspace.com/file/ho7db4
print: http://prntscr.com/lr6cyc
5
Snippet Showroom / Re: Flakes Menu System [rel004]
« on October 6th, 2018, 01:28 AM »
esta quebrada el link!!!
6
Support / Re: Help Error in forum
« on July 8th, 2018, 02:18 AM »
thanks takanaue one more request you could contact me at pv.
7
Support / Re: Help Error in forum
« on July 6th, 2018, 01:05 PM »Nothing seems wrong. Or I'm blind?
8
Support / Help Error in forum
« on July 6th, 2018, 12:22 AM »10
Support / Re: Help-Me
« on July 3rd, 2018, 10:04 PM »
Yes, you speak like this because you already know and I do not know anything from client-side
11
Support / Re: Help-Me
« on July 3rd, 2018, 02:14 PM »
I know this but I want to learn to edit client side someone to teach me the basics?
12
I ask the help of someone from the community, I am Brazilian and I do not know anyone who can teach me more about client, GUI those things from 004 005 006 and ETC until today I want to learn a lot so you can proceed with my server so I ask the help of a human who Kindly help me please. :D :D
14
Script and Content Requests / Re: Where is the error?
« on July 2nd, 2018, 02:10 PM »
I came back a short time pro vcmp I still did not remember the right functions but try this
Code: [Select]
else if (cmd == "arava")
{
if(spam[player.ID] == 5 ) MessagePlayer("Dont Spam!",player);
return;
{
spam[player.ID]++;
player.Health = 100;
NewTimer( "spam", 5000, 0, player.Name );
}
return 1;
}
15
Script and Content Requests / Re: Where is the error?
« on July 2nd, 2018, 01:53 PM »
use
Code: [Select]
else if (cmd == "arava")
{
if(spam[player.ID] == 5 ) MessagePlayer("Dont Spam!",player);
else
{
spam[player.ID]++;
player.Health = 100;
NewTimer( "spam", 5000, 0, player.Name );
}
}