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.


Topics - Advanced Bot

Pages: 1 ... 8 9 10 11 12 [13] 14 15 16 17 18 19
181
Help / Picture profile, not allowing me to change my profile picture
« on: December 11, 2013, 11:20:15 PM »
I have uploaded and waited for it to attempt to change my profile picture, but nothing happens. It just stays as this current profile. Not sure what is going on.

182
Suggestions & Requests / RTB - Add a "Making a gui" as a status
« on: December 06, 2013, 12:13:14 PM »
When the player enters the gui editor, it should make the rtb status as "Making a gui"

What do you think?

183
I keep getting 403 errors on all websites, including the forums and the game itself (I am using a phone connection at the moment so that is why I am only here)

The error has something like:
+ You are required to log in.
  - You are able to connect to the website, but log in is required.

Does anyone know what this means and how to fix it?

184
General Discussion / Giving away a private mod I have had for about a year.
« on: December 04, 2013, 09:06:31 PM »
This mod is known as "Survive the Disasters", I don't really want it anymore.

I have gotten really bored with it, and I choose not to use it anymore.

Mod details:

+ Map changing, uses files SD_*
+ You can create your own disasters if you know how to code.
+ 3 Disasters to start with
+ 3 maps to start with
+ Survivors get points when surviving and after surviving
+ Tells all people who survived after the round
+ Disaster tells its' name and the task to survive it

For this mod, you are required Slayer, using the teams.
Team 1 needs to be yellow.
Team 2 needs to be red.

Download

185
Suggestions & Requests / Backup Master Server
« on: November 30, 2013, 01:36:29 PM »
There should be a backup master server, if the auth cannot connect it should connect to the backup master server after several tries.

This would be a very good idea. Even though there is a chance that the backup master server can be down too.

186
Add-Ons / Customized Console - v1.35 : Is pink your favorite color?
« on: November 29, 2013, 11:30:09 PM »
When you are actually in the game (And spawned) you get this console.



The console has custom color and transparency management too for those dark and bright screens (and servers)

It goes from 0 to 255. The higher it is, the more color and less transparency it is.



Otherwise, when you are not spawned, you get this gui (or you are at the main menu)



Download v1.35

I recommend getting better eyesight if you can't see well.
Otherwise, don't get this add-on..

+ V0.8 +
  - Fixed console center issue.

+ V0.98 +
  - Console can now have custom color and transparent.

+ V1.3 +
  - Fixed a few bugs:
      _ Transparent console is blank until you put a few lines of eval.
      _ Transparent console sometimes does not fully open up the scroll correctly.

+ V1.35 +
  - You can now have a custom keybind instead of `.
  - Now remembers your last color you set it to.

There are no known bugs so far. If there are any, please PM me them or post here.

187
Modification Help / Tell if an object is in a shadow?
« on: November 29, 2013, 05:47:17 PM »
How can you tell if an object is in a shadow?

I saw ports code but it never works for me.

function isPointInShadow(%pos, %ignore) {
        %ray = containerRayCast(%pos,
                vectorAdd(%pos, vectorScale(getSunVector(), 250)),
                $TypeMasks::StaticShapeObjectType |
                $TypeMasks::FxBrickObjectType |
                $TypeMasks::VehicleObjectType |
                $TypeMasks::PlayerObjectType |
                $TypeMasks::ItemObjectType,
                %ignore
        );

        return %ray !$= 0;
}


Yes, I have the other codes he has for it. It just keeps giving me a true statement. In shadow or not.

188
Modification Help / Animations on Shaper
« on: November 29, 2013, 01:43:35 AM »
How can you make animations on Shaper? I know the animate button, but that is it.

189
Modification Help / Making players fly and move fast
« on: November 28, 2013, 01:06:52 AM »
How can you make them be able to fly with no laggy looks?

I have been wondering about this a lot.

190
How would I use %player.addVelocity(X Y Z); to get to one point to another?

See last post to see the fix, if you can find a shorter way, please tell me.

191
Modification Help / Code will not add the swatch onto the gui
« on: November 17, 2013, 01:21:20 AM »
Yea, I am not sure how it isn't.. The object does exist, the functions work. I just have no idea what is going on.

   function uRPGTabs_Shop_ItemSet::AddShopItem(%this,%image,%name,%cost,%description)
   {
      if(%image $= "")
         %image = "base/client/ui/brickicons/Unknown";
      %strName = strReplace(%name," ","_");
      if(isObject("uRPGShopItem_" @ %strName))
         return;
      if(%image.doColorShift == 1)
      {
         %csc = %image.colorShiftColor;
         %color = mFloatLength((getWord(%csc,0) * 255),0)
            SPC mFloatLength((getWord(%csc,1) * 255),0)
            SPC mFloatLength((getWord(%csc,2) * 255),0)
            SPC mFloatLength((getWord(%csc,3) * 255),0);
      }
      else
         %color = "255 255 255 255";
      %object = new GuiSwatchCtrl("uRPGShopItem_" @ %strName)
      {
         profile = "GuiDefaultProfile";
         horizSizing = "right";
         vertSizing = "bottom";
         position = "188 171";
         extent = "272" SPC getWord(uRPGTabs_Shop_ItemSet.extent,1);
         minExtent = "8 2";
         enabled = "1";
         visible = "1";
         clipToParent = "1";
         color = "0 0 0 100";

         new GuiBitmapCtrl("uRPGShopItem_Picture_" @ %strName)
         {
            profile = "GuiDefaultProfile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "0 0";
            extent = "100 100";
            minExtent = "8 2";
            enabled = "1";
            visible = "1";
            clipToParent = "1";
            wrap = "0";
            lockAspectRatio = "0";
            alignLeft = "0";
            alignTop = "0";
            overflowImage = "0";
            bitmap = %image.iconName;
            keepCached = "0";
            mColor = %color;
            mMultiply = "0";
         };
         new GuiMLTextCtrl("uRPGShopItem_Name_" @ %strName)
         {
            profile = "BlockChatChannelSize3Profile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "105 0";
            extent = "149 22";
            minExtent = "8 2";
            enabled = "1";
            visible = "1";
            clipToParent = "1";
            lineSpacing = "2";
            allowColorChars = "0";
            maxChars = "-1";
            text = "<just:center>" @ %name;
            maxBitmapHeight = "-1";
            selectable = "1";
            autoResize = "1";
         };
         new GuiMLTextCtrl("uRPGShopItem_Cost_" @ %strName)
         {
            profile = "BlockChatChannelSize3Profile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "105 40";
            extent = "149 22";
            minExtent = "8 2";
            enabled = "1";
            visible = "1";
            clipToParent = "1";
            lineSpacing = "2";
            allowColorChars = "0";
            maxChars = "-1";
            text = "<just:center>Cost: " @ %cost @ " Gold";
            maxBitmapHeight = "-1";
            selectable = "1";
            autoResize = "1";
         };
         new GuiMLTextCtrl("uRPGShopItem_Description_" @ %strName)
         {
            profile = "BlockChatChannelSize3Profile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "105 70";
            extent = "150 62";
            minExtent = "150 62";
            enabled = "1";
            visible = "1";
            clipToParent = "1";
            lineSpacing = "2";
            allowColorChars = "0";
            maxChars = "-1";
            text = "<just:center>" @ %description;
            maxBitmapHeight = "-1";
            selectable = "1";
            autoResize = "1";
         };
         new GuiBitmapButtonCtrl("uRPGShopItem_Buy_" @ %strName)
         {
            profile = "BlockButtonProfile";
            horizSizing = "right";
            vertSizing = "bottom";
            position = "0 108";
            extent = "100 22";
            minExtent = "8 2";
            enabled = "1";
            command = "commandToServer(\'uRPG_Buy\'," @ %name @ ");";
            visible = "1";
            clipToParent = "1";
            text = "Buy";
            groupNum = "-1";
            buttonType = "PushButton";
            bitmap = "base/client/ui/button1";
            lockAspectRatio = "0";
            alignLeft = "0";
            alignTop = "0";
            overflowImage = "0";
            mKeepCached = "0";
            mColor = "255 255 255 255";
         };
      };
      uRPGTabs_Shop_ItemSet.add(%object);
      %object.setVisible(1);
      uRPGTabs_Shop_ItemSet.extent = getWord(uRPGTabs_Shop_ItemSet.extent,0) SPC getWord(uRPGTabs_Shop_ItemSet.extent,1)+140;
   }

192
Add-Ons / Anti "Bad Words" - Warns to the ban - Nope
« on: November 13, 2013, 09:56:25 PM »
I have seen servers that inspired me to make this kind of add-on.

You don't like people saying bad words?.. ---

It warns them at a number of times, then it bans them for the amount that it was set at.

Prefs:

$Pref::Server::MaxBadWarns - (Default is 3) - Max warns (After the last warn is bans)
$Pref::Server::BadBanTime - (Default is 10) - Max time of banning




<Link Removed>

193
Modification Help / Playing Music (It can't find the audio)
« on: November 11, 2013, 10:54:52 PM »
function clientCmduRPG_PlaySong(%song,%type)
{
   if(isFile("Add-Ons/Client_UltimateRPG/rMusic/" @ %type @ "/" @ %song @ "_" @ %type @ ".ogg"))
   {
      if(alxIsPlaying($uRPG::CurrentSong))
         alxStop($uRPG::CurrentSong);
      $uRPG::CurrentSong = alxCreateSource(AudioGUI, "Add-Ons/Client_UltimateRPG/rMusic/" @ %type @ "/" @ %song @ "_" @ %type @ ".ogg");
      alxPlay($uRPG::CurrentSong);
   }
}

Somehow, this shows up: Unable to locate profile '0'

194
Modification Help / TCP Objects - Having issues - With making a translator
« on: November 06, 2013, 09:39:21 PM »
Using a TCPObject, how can I send information, example, to this website? - http://translate.google.com/#auto/es/YourTextHereToTranslate

   function ClientOs_Internet::onLine(%this,%line)
   {
      //My stuff is hidden
   }
   
   function ClientOs_Internet::onConnected(%this)
   {
      //My stuff is hidden
   }


See my last post for more.

195
Add-Ons / Re-Auth Button - Having internet issues with blockland?
« on: November 02, 2013, 07:50:02 PM »
You can now easily re-auth to the server! Just press the "Re-Auth" button, no restart will be required to fix your internet with blockland.

Laziness required!



Client_ReAuth

I am not sure how this wasn't made yet. It is now!


Update: Re-Auth button now hides until the bar successfully blinks to prevent spamming it.

Pages: 1 ... 8 9 10 11 12 [13] 14 15 16 17 18 19