question

08/24/2006 09:06 Artimis#16
Quote:
Originally posted by tsu+Aug 22 2006, 08:26--></span><table border='0' align='center' width='95%' cellpadding='3' cellspacing='1'><tr><td>QUOTE (tsu @ Aug 22 2006, 08:26)</td></tr><tr><td id='QUOTE'> <!--QuoteBegin--prog4mer@Aug 22 2006, 06:45
uhm its not possible ! maybe a while ago with packets, but not possible i think !
Ofcoruse it is, remember? ;)

All you have to do is, when you are in-game with your main charater.

Click options, delete, and write in the code, but NOTE, THE CODE IS ACTUALLY YOUR WAREHOUSE PASSWORD!

Trixy there by TQ :D

ENJOY!!!1111 [/b][/quote]
Awhile back that worked I deleted a char with met and mettear on him and then I had it on my new char lol noy duping jsut gotta keep items lol
08/24/2006 18:10 tasha#17
only way you are going to dup an item is to just buy 2 of the same item. just keep buying 2 of everything and you will have dups of all your items
08/25/2006 00:53 KatsuAkimoto#18
Well, it isnt entirely impossible, since nothing on an online game (Especially by TQ) is impossible.
The server can obviously spawn items, with something most likely simialr to, but not limited to, the following:
Code:
new gSpawnedItems&#91;MAX_ITEMS&#93;;
public OnItemSpawn&#40;itemid&#41;
{
gSpawnedItems&#91;MAX_ITEMS&#93;++;
return 1;
}
Bad example, mainly because there is no other code to support this, so it wouldnt work in any way, but i will try to explain what i mean:
The server spawns items, and obviously it has to add an ID to each item, in order to keep track of it. In this code, it is assumed that it adds 1 to the highest item ID, which may not be the case for CO, but that doesnt matter right now:P
But, of course, that would lead to an extremely high number for item IDs, 999996786 for example.
Items also dissapear, so a code similar to this:
Code:
public OnItemDelete&#40;itemid&#41;
{
gSpawnedItems&#91;MAX_ITEMS&#93;--;
}
Would be there, so, if 40 items spawned, the [MAX_ITEMS] would equal [40], if 5 were left on the floor long enought to vanish, or were sold, [MAX_ITEMS] would have 5 subtracted from it, [35].
But, from what i know about CO (Which is little, and im proud of it:P), you would have to send TQ code in order to test this, and good luck with that:P
Code:
&#34;tbb&#092;b&#092;b&#092;bC_&#092;b+_&#092;b+FTW&#34;;
Stick that code in ur pipe and smoke it
:bandit:
EDIT:
By "Equal 40", i mean as an array, not actually equaling 40.