SA-MP 0.3x RC (now released) - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: SA-MP 0.3x RC (now released) (
/showthread.php?tid=405580)
Respuesta: SA-MP 0.3x RC -
Miguel_Leopold - 08.01.2013
Really sweet
AW: SA-MP 0.3x RC -
Littl3j0hNy - 08.01.2013
Hi, i have problems with the vspawner images.
I have no Mods installed and i have tried to reload the vspawner.
Does anyone else have this problem also?
regards,
Lj
Re: AW: SA-MP 0.3x RC -
Flyfishes - 08.01.2013
Quote:
Originally Posted by Littl3j0hNy
Hi, i have problems with the vspawner images.
I have no Mods installed and i have tried to reload the vspawner.
Does anyone else have this problem also?
regards,
Lj
|
Colored the font or model used to spawn them?
AW: Re: AW: SA-MP 0.3x RC -
Littl3j0hNy - 08.01.2013
Quote:
Originally Posted by Flyfishes
Colored the font or model used to spawn them?
|
I have just started the 0.3x rc1 server and tested /vspawner...
Reloading the filterscripts doesn't help. Some vehicle models works without any problems...
Re: SA-MP 0.3x RC -
[RSS]ANTHONY - 08.01.2013
awesome finally
Re: SA-MP 0.3x RC -
$uRн - 08.01.2013
wow, very cool!!! The new version when it comes out? RC2..
Re: SA-MP 0.3x RC -
StjepanSilver - 09.01.2013
Nice.
Re: SA-MP 0.3x RC -
MUTZILA - 09.01.2013
There is a bug at this version.When i connect to a server it says Connecting to IP.... and then says The Server Didn't Respond.Try Again and it keeps saying to me this at every server i try to connect.
Re: SA-MP 0.3x RC -
Swimor - 09.01.2013
Quote:
Originally Posted by MUTZILA
There is a bug at this version.When i connect to a server it says Connecting to IP.... and then says The Server Didn't Respond.Try Again and it keeps saying to me this at every server i try to connect.
|
1. Update your client
2. Update your server
Re: SA-MP 0.3x RC -
jdey - 09.01.2013
Quote:
Originally Posted by MUTZILA
There is a bug at this version.When i connect to a server it says Connecting to IP.... and then says The Server Didn't Respond.Try Again and it keeps saying to me this at every server i try to connect.
|
Check your client version
Re: SA-MP 0.3x RC -
Beckett - 09.01.2013
Woop woop cant wait! !!!!!
Re: SA-MP 0.3x RC1-2 -
Masacru - 10.01.2013
this is great! good work staff!
Re : SA-MP 0.3x RC1-2 -
V4at - 11.01.2013
Need to do that can not get in to the car from a distance, it is through objects.
Re: SA-MP 0.3x RC1-2 -
Zack9764 - 11.01.2013
Beautiful job SA-MP team! Keep it coming! Is lag shooting fixed?
Re: SA-MP 0.3x RC1-2 -
x96664 - 11.01.2013
Awesome!
Re: SA-MP 0.3x RC1-2 -
x96664 - 11.01.2013
vspawner and skinchanger are not working for me any ideas ? When I type /vspawner /vschange it just says unknown command.
Re: SA-MP 0.3x RC1-2 -
The_Creator - 11.01.2013
Quote:
Originally Posted by x96664
vspawner and skinchanger are not working for me any ideas ? When I type /vspawner /vschange it just says unknown command.
|
Just login as rcon admin.
/rcon login <password from server.cfg>
Re: SA-MP 0.3x RC1-2 -
Luis- - 11.01.2013
You don't need to login as RCON admin to use the command. Are you sure you've loaded it correctly? The commands are, /vspawner & /skinchange
Re: SA-MP 0.3x RC1-2 -
The_Creator - 11.01.2013
Quote:
Originally Posted by -Luis
You don't need to login as RCON admin to use the command. Are you sure you've loaded it correctly? The commands are, /vspawner & /skinchange
|
From
vspawner.pwn
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
new cmd[256+1];
new idx;
if(!IsPlayerAdmin(playerid)) return 0;//Need login as rcon admin.
cmd = strtok(cmdtext, idx);
if(strcmp("/vspawner", cmd, true) == 0)
{
// If there was a previously created selection menu, destroy it
DestroySelectionMenu(playerid);
SetPVarInt(playerid, "vspawner_active", 1);
//SetPVarInt(playerid, "vspawner_page", 0); // will reset the page back to the first
CreateSelectionMenu(playerid);
SelectTextDraw(playerid, 0xACCBF1FF);
return 1;
}
return 0;
}
Re: SA-MP 0.3x RC1-2 -
Luis- - 11.01.2013
Oh my mistake. Sorry!