PlusEMU Support thread.

Status
Not open for further replies.

Meap

Don't need glasses if you C#
Nov 7, 2010
1,045
296
How wold I go about implementing something like this so I can list off the commands into sections easier to see instead of one command being one after the other?
Code:
private void RegisterUser()
{
StringBuilder List = new StringBuilder();
List.Append("--------------------------------------------------------------------------\r");
List.Append("HabSlick Commands List\r");
List.Append("--------------------------------------------------------------------------\r\r");
 

Hablet

New Member
Apr 13, 2012
14
2
Anyone have any idea how to make BOT's stand on top of furni given the stack height in the database, rather than placing at 0 all the time.
QgC9g3d.png
 

MagnusDev

Member
Apr 28, 2012
40
1
Hi,
I have two problems.
My client wount load from to 76% and its stops. And just loading and loading.

In the emulator I get 400 messenger about things in ItemManager.cs

How can I soul this problem?

cb576f1a4280990756b6ec022c0b7aec.png
 
Last edited:

Brought

更加努力
Jan 14, 2013
595
203
Hi,
I have two problems.
My client wount load from to 76% and its stops. And just loading and loading.

In the emulator I get 400 messenger about things in ItemManager.cs

How can I soul this problem?

cb576f1a4280990756b6ec022c0b7aec.png
Some items were not found in the database.
"Could not load item #65069"

In regards to 76%, did you open your ports respectively?
 

Meap

Don't need glasses if you C#
Nov 7, 2010
1,045
296
is there an easier way to update the badge definitions table with the badges?
 
was reading up on some stuff and managed to come together with this after compiling together some examples I found
This will auto give you the queries so you can just truncate your badge_definitions table and run this and it will make sure every badge works
If anyone wants to expand on this to make it search for if the badge already exists and skips that query from showing to stop duplicates so you dont have to truncate everytime It would be highly appreciated because its 5am for me right now and my mind isnt so fresh
Just replace DATABASENAME with your database name
PHP:
<?php
$target = "c_images/album1584/";
$weeds = array('.', '..');
$directories = array_diff(scandir($target), $weeds);   
foreach($directories as $value)
{
$gifkill=str_replace('.gif', '', $value);
$gif2kill=str_replace('.GIF', '', $gifkill);
$uppercasewords=ucwords($gif2kill);
if(is_file($target.$value))
{
echo "INSERT INTO `DATABASENAME`.`badge_definitions` (`code`, `required_right`) VALUES ('".$uppercasewords."', '');<br />";
}
}
?>
 
Status
Not open for further replies.

Users who are viewing this thread

Top