Show Posts

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.


Messages - Dexx

Pages: [1]
1
Help / Re: Event help!
« on: June 15, 2014, 01:32:38 PM »
Thank you so much, i really mean it :D

2
Help / Event help!
« on: June 15, 2014, 12:35:32 PM »
 Okay, i'm making a deathrun and i'm trying to make one of my traps change events when activated. for example when a button is activated the plate changes events so if a player touches it, it kills.

How will i be able to do that?
What events do i need?

i tried using zone bricks and the event 'onPlayerEnterZone' but it doesn't work. cause if the player is already in the zone it doesn't kill.

if someone can help THAT WOULD BE AMAZING! :DD

3
Suggestions & Requests / Re: Charged Chisel
« on: August 27, 2013, 01:55:46 AM »
You mean like that item in Pload's jail escape? If I remember correctly, you had a chisel that you took the guard towers down with.

YES Like that!

4
Suggestions & Requests / Charged Chisel
« on: August 25, 2013, 11:31:09 PM »
so i just had an idea, someone should make a Chisel that charges like a butterfly knife and like a spear.

5
Modification Help / Re: Client-Sided Calculator Chatbot
« on: January 02, 2013, 12:57:55 PM »
You posted no code for us to help with, only the question "is that possible?"

So; to answer your question: yes.
      else if(getwords(%msg, 0, 1) $= "Chatbot do" && getWord(%msg, 3) $= "+" && getWordCount(%msg) == 5)
      {
         %a = getword(%msg,2);
         %b = getword(%msg,4);
         %c = %a + %b;
         commandtoserver('messageSent',"[Chatbot]: " @ %a @ " + " @ %b @ " = " @ %c);
      }

thats what i have but i want to make it "-calc [question]"
not "chatbot do [question]"
you know what i mean?

6
Modification Help / Client-Sided Calculator Chatbot
« on: January 02, 2013, 12:26:31 AM »
i need a Client-Sided Calculator Chatbot
so when i say "-calc [math]"
bot says [math] = [answer]
is that possible?

Thanks

7
Modification Help / allow people to use yor chatbot?
« on: January 01, 2013, 10:18:42 PM »
how can you make your chatbot allow people to use your chatbot
example:"Allow [players name] to use my chatbot"
then my chatbot will respond to [players name]

8
Modification Help / Re: Chatbot command
« on: January 01, 2013, 02:08:51 PM »
function getTime()
{
   %timeHour = getSubStr(getWord(getDateTime(), 1), 0, 2);
   %timeMinute = getSubStr(getWord(getDateTime(), 1), 3, 2);

   if(%timeHour > 12)
   {
      %timeHour -= 12;
      %timeWord = "PM";
   }

   else
   {
      %timeHour = getSubStr(getWord(getDateTime(), 1), 1, 1);
      %timeWord = "AM";
   }

   return %timeHour @ ":" @ %timeMinute SPC %timeWord;
}

function getDate()
{
   %date = getWord(getDateTime(), 0);

   return %date;
}
package pingClient
{
   function serverCmdMessageSent(%client,%msg)
   {
      if(%client.isSuperADmin && getSubstr(%msg,0,1) $= "!")
      {
         switch$(getSubStr(firstWord(%msg),1,strLen(firstWord(%msg))))
         {
            case "ping":
               %name = restWords(%msg);
               %plr = findclientbyname(%name);
               if(!isObject(%plr))
               {
                  messageClient(%client,'',"No one named " @ %name);
                  return;
               }
               %ping = %plr.getPing();
               messageClient(%client,'',%plr.name @ " has the ping of " @ %ping @ "ms");
            case "time":
               messageClient(%client,'',"It's " @ getTime() @ " on " @ getDate());
         }

      }
      else
      {
         return parent::serverCmdMessageSent(%client,%msg);
      }
   }
};activatepackage(pingClient);


fixed a bug and added time/date and made it super mega ultra dynamic
Thank you sooooooo much

9
Modification Help / Re: Chatbot command
« on: December 31, 2012, 07:43:49 PM »
It would just make it easier for you to edit commands, someone else can give an example if they want.
i want a chatbot but not an annoying chatbot i want a chatbot that only responds to me and has a couple of commands like ping, time and calc

10
Modification Help / Re: Chatbot command
« on: December 31, 2012, 07:35:31 PM »
Are you going to want more than the !ping and !time commands? If so, it would be a good idea to have an easier-to-edit command system.

what's that?

11
Modification Help / Re: Chatbot command
« on: December 31, 2012, 07:25:27 PM »
well this would need either just to be a serversided add-on or a clientsided add-on that interacts with a serversided add-on because by default you can't just get people's ping.
Though I will quickly write you something up.
It'll be used like so
!ping -name- without the -'s

package pingClient
{
   function serverCmdMessageSent(%client,%msg)
   {
      if(%client.isSuperADmin && firstWord(%msg) $= "!ping")
      {
         %name = restWords(%msg);
         %plr = findclientbyname(%name);
         if(!isObject(%plr))
         {
            messageClient(%client,'',"No one named " @ %name);
            return;
         }
         %ping = %plr.getPing();
         messageClient(%cleint,'',%plr.name @ " has the ping of " @ %ping @ "ms");
      }
      else
      {
         return parent::serverCmdMessageSent(%client,%msg);
      }
   }
};activatepackage(pingClient);


i probably made some stupid error. fix it if you see it (not tested)
put this in a cs and type exec("path/in/bl/folder/to/cs/file.cs"); and it should work.


Thanks so much and one more thing how can i make my chatbot tell the time and the date

12
Modification Help / Chatbot command
« on: December 31, 2012, 05:59:58 PM »
how can i make it so when i say "check [players names] ping" my chatbot says there ping?

13
Help / Re: Squideeys Texturepack
« on: December 27, 2012, 12:52:11 PM »
Here are the textures:

http://www.mediafire.com/?4892p102c2yeytc

That should work. Open up the .rar file and put the 5 files (brickRAMP.png, brickTOP.png...etc) into

Documents -> Blockland -> Base -> Data -> Shapes

In shapes, replace the default texture files with these. You can copy and paste the default ones out just in case you want to re-use them, but make sure the new textures you put in are named the same way the default ones were before you replaced them. After you replace them with the new ones, highlight all of 5 them, right click, and click "Properties". Then, check the "Read-Only" box and hit "Ok" (make sure all of them are read-only!)

Thank You soooooooooooo Much but do i need the usercontent addon?

14
Help / Squideeys Texturepack
« on: December 26, 2012, 11:41:13 PM »
I used to have Squideeys Texturepack but then i got a new computer and everything got deleted so can someone give me a download of squideeys texture pack and tell me how to install it?

Thanks

15
Help / Dedicated Server Problems
« on: September 28, 2012, 11:25:07 PM »
howcome when i join my dedicated server, im not host or super admin/admin?

Pages: [1]