Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: BABA1 on Aug 22, 2016, 04:41 PM

Title: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: BABA1 on Aug 22, 2016, 04:41 PM
Hello Everyone, I would like to entreat you guys to help me out.
I was trying to script the /saveskin thing.
Here's what I did:
skin <- array(100, null);
function onPlayerCommand(player, cmd, text)
{
 if(cmd=="changeskin")
 {
   if(!text) PrivMessage(player, "Error: try this instead: /changeskin <skin id>");
   else if(!player.IsSpawned) PrivMessage(player, "Error, You need to spawn first!"):
   else
   {
     player.Skin = ( IsNum(text) ? text.tointerger() : GetSkinID(text) );
   }
 }
 else if(cmd=="saveskin")
 {
  if(!player.IsSpawned) PrivMessage(player, "Error: You need to spawn before you make use of any commands!");
  else
  {
    MessagePlayer("You've successfully set your skin", player);
     skin[player.ID] = player.Skin;
  }
 }
 else if(cmd=="removeskin")
 {
 skin[player.ID] = null;
 }
}
 
function onPlayerSpawn(player)
{
  if(skin[player.ID]!=null)
{
PrivMessage(player, "You've spawned with the garments of your choice!");
player.Skin = skin[player.ID];
}
}

I would be really glad and grateful if you guys could help me out by illustrating some examples and explaining them in a decent way. :D

Regards,
BABA1
Title: Re: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: EK.IceFlake on Aug 22, 2016, 04:49 PM
What happened? I cant make out anything from your question. Do you want us to give you guidance to making /saveskin?
Title: Re: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: Xmair on Aug 22, 2016, 05:18 PM
What is the actual error?
Title: Re: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: Eva on Aug 22, 2016, 05:29 PM
Quote from: Xmair on Aug 22, 2016, 05:18 PMWhat is the actual error?
as the subjecttitle sais he doesnt see any error, and from what i get his script doesnt work :P
Title: Re: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: BABA1 on Aug 22, 2016, 05:29 PM
Quote from: Xmair on Aug 22, 2016, 05:18 PMWhat is the actual error?

There's no error but it doesn't seem to work at all.
To be more precise, It was supposed to work as soon as one spawns but it doesn't work in my case.
Title: Re: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: BABA1 on Aug 24, 2016, 03:31 PM
BUMPING. Sorry but I had to. I want someone to check out my snippet and see if it works on theirs since it doesn't work in my case.
Title: Re: Help! Neither am I able to find the bugs in it nor do I see any errors in it.
Post by: Mötley on Aug 25, 2016, 11:31 AM
Well I can not test. But I really looked over your code..
I noticed an issue with your array.
I also figured I would change the entire validations to see what that will do for you.

:P Maybe help update the topic for you as well and or fix it.

skin <- array(GetMaxPlayers(), 0);

function onPlayerCommand(player, cmd, text) {
    if(cmd=="changeskin") {
       if(!text) {
          PrivMessage(player, "Error: try this instead: /changeskin <skin id>");
          return true;
       }
       
       if(!player.IsSpawned) {
           PrivMessage(player, "Error, You need to spawn first!"):
           return true;
       }
           player.Skin = ( IsNum(text) ? text.tointerger() : GetSkinID(text) );
           return true;
    }
   
    if(cmd=="saveskin") {
       if(!player.IsSpawned) {
          PrivMessage(player, "Error: You need to spawn before you make use of any commands!");
          return true;
       }

       MessagePlayer("You've successfully set your skin", player);
       skin[player.ID] = player.Skin;
       return true;
     }
     
     if(cmd=="removeskin") {
          skin[player.ID] = null;
           return true;
     }
 
    //Just an error return for anything else
    MessagePlayer("Invalid skin command", player);
 
  return false;
}