Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Look At Page 3 Should Be Called Bite
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Quote:
Originally Posted by
Habboretromaker
Look At Page 3 Should Be Called Bite
;o but i asked for a bit more advanced code.
That you only can bite if you are close to the target.
Edit: And if you bited someon it gives a random rare from a couple furniture ids.
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Quote:
Originally Posted by
Admiral-Speedy
I don't need a command, but I dropped in to see how this was going, great work on the commands, I'm using some of them right now!
You Sound... Kinda Stupid :rolleyes:
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Quote:
Originally Posted by
Habboretromaker
Heres Some Commands Enjoy For Zombie U Might Have to Say Username Instead Of X And This Is For Dissi
---------- Post added at 10:26 PM ---------- Previous post was at 10:21 PM ----------
Marry Propose And Divorce Enjoy
You Gotta Make A Marriage In Db You Can Edit Marry So u Get A Badge :blush:
---------- Post added at 10:30 PM ---------- Previous post was at 10:26 PM ----------
You Gotta Make Two Things In Db Its Gang And Gangmember Enjoy :blush:
---------- Post added at 10:32 PM ---------- Previous post was at 10:30 PM ----------
Credits: -Jordan- And Me Commands From His Emulator And Db And Etc Edited By Me To Work On Dissi's Please Dont Say There Crap Because Just Started To C#
You have done some improvements to this that i wouldnt of spotted out.
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Can anyon code my requested commands?
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Quote:
Originally Posted by
-Jordan-
You have done some improvements to this that i wouldnt of spotted out.
Really? Means Alot Coming From A Good Coder
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Hey i got ubercms and uberemulator but where i need to add the commands??
somebody knows?
and i need a command named:
:credits <name> <amount>
:pixels <name> <amount>
Thank you ;):cool:
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
This thread is a bit death..
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Emu: Lost_Memory's V26 Source(non tdbp)
Command: :rebootemu
What it does:
Makes the emulator reboot.
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Hey..
:gift
Does anyone remember on openhotel the :gift command which would give you a gift containing a random furni ID..that could be any id from the database?
source: Dissi's edit
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Looks like the person isnt doing commands anymore?? Correct me if im wrong though please.
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Roper I CCan Do A Refresh Command So Like Refresh Cata Etc Ok?
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Quote:
Originally Posted by
whopps
Hey..
:gift
Does anyone remember on openhotel the :gift command which would give you a gift containing a random furni ID..that could be any id from the database?
source: Dissi's edit
Here, this should do it.
PHP Code:
case "gift": // Warps the virtual user to a certain X,Y coordinate
{
int TID;
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.addParameterWithValue("userid", userID);
if (dbClient.findsResult("SELECT id FROM users WHERE id = @userid AND gifted = 0"))
return; // Already used :gift
TID = dbClient.getInteger("SELECT tid FROM catalogue_items ORDER BY RAND() LIMIT 1");
dbClient.runQuery("UPDATE users SET gifted = 1 WHERE id = @userid");
}
catalogueManager.handlePurchase(TID, userID, 0, "", 0, 0);
break;
}
Execute this query
Code:
ALTER TABLE `users` ADD `gifted` TINYINT NOT NULL DEFAULT '0'
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Quote:
Originally Posted by
cecer1
Here, this should do it.
PHP Code:
case "gift": // Warps the virtual user to a certain X,Y coordinate
{
int TID;
using (DatabaseClient dbClient = Eucalypt.dbManager.GetClient())
{
dbClient.addParameterWithValue("userid", userID);
if (dbClient.findsResult("SELECT id FROM users WHERE id = @userid AND gifted = 0"))
return; // Already used :gift
TID = dbClient.getInteger("SELECT tid FROM catalogue_items ORDER BY RAND() LIMIT 1");
dbClient.runQuery("UPDATE users SET gifted = 1 WHERE id = @userid");
}
catalogueManager.handlePurchase(TID, userID, 0, "", 0, 0);
break;
}
Execute this query
Code:
ALTER TABLE `users` ADD `gifted` TINYINT NOT NULL DEFAULT '0'
Reason why .addParametreWithValue, and DbClient.getinteger wont work..?:\
Re: [SERVICE] Making Holograph Emulator commands [SERVICE]
Cecer, why not release Habbz old emu with wobbley squabbly?