P Server "NPC base code/shops/drop items" for who asked me 2 do it

07/10/2008 21:56 InfamousNoone#1756
Originally From samehaven
Quote:
no , the vista system cant deal with the server packets ATM .
Bzzzt Wrong. If vista couldn't deal with packets then no internet access would be available at all, if you'll say that it only applies to conquer servers, then still nope because then you wouldn't be able to play the game itself, it has to do with how Conquer and the C++ (and C) libraries worked. I'm assuming Microsoft changed something memory-related in their Vista API.
07/10/2008 22:00 galdik#1757
Quote:
Originally Posted by Bottingpunk View Post
holy shit i was just on here like 4 hrs ago at page 166 and now its at 175 ...
yeach get used to it

Quote:
... gfun at winzip.com wat do i download to make my client a zip file to put it on da net?
[Only registered and activated users can see links. Click Here To Register...]
kidna I dont even know that its already winzip ver. 11 still using ver. 9something O_O

eto put there some mail adress (tested unexist one)
click on image eval. version
but I dunno not using ver 11 hope it will be ok
07/10/2008 22:02 Bottingpunk#1758
Quote:
Originally Posted by plasken View Post
congratz! youre only 13! sorry that im not as smart as you! thats why im here ;-) To Learn my friend! to ask questions! so dont break us down! help us if its sooooo easy!

Grtz ;-)
well im not callin any one a dumb ass and i aient no nerd if any of u where thinking that lol i just read the thread it explains it all. but it get annoying for ppl to ask the same thing over and over and over again u.

Also adz samehvan or someone on the team wen ppl kill some one i get pk pts lol its funny also then shopboy wen u click him like 5 times he makes ppl ahve like 2kk attack its hillarious
07/10/2008 22:23 stephanyd#1759
@Samhevan...is that possible to put your Droprate in Rev4B ? I use Rev4B source but i can't drop +1 items ...only ref,uni,eli,sup ones
07/10/2008 22:39 ~Final+Cloud~#1760
did anyone fix the whole client exiting thing everytime u get a few kills, cuz thats kinda fucks up being an archer or lvling at all >_<
07/10/2008 22:44 underØATH#1761
I have some questions.

1º As I make pra to compose the super item for +1 +2 +3…. the NPC in market does not function, is certain? (in mode cliente, not GM)
07/10/2008 23:12 imunknown#1762
Quote:
Originally Posted by stephanyd View Post
@Samhevan...is that possible to put your Droprate in Rev4B ? I use Rev4B source but i can't drop +1 items ...only ref,uni,eli,sup ones
to drop normal +1 items, use the itemID of a normal item, for example:

1002-111303-1-0-0-0-0-30

Will drop a normal +1 IronHelmet in the TC map.

COItems.txt has lists of item ID's, going from lowest normal, to super per ID.
07/10/2008 23:33 Bottingpunk#1763
ok ok guys there is somthing goin on here ok every one has like invint hp and no one can kill them and gms dont affect them (normal players) so wtf is goin on lol
07/10/2008 23:46 ammunation#1764
k ive looked at a lot of pages and cant seem to find this although i know the information is here this is kind of a last resort
[1611]
face=9
txt0=Which items would you like to trade for a reward?
opt0=10 SunDiamonds for 5 mets-10 MoonDiamonds for 10 mets-15 StarDiamonds for 1 Dragonball-15 CloudDiamonds for 1 Dragonball and 1 AncestorBox
req=item,721533,0,0,0,0,0,10-item,721534,0,0,0,0,0,10-item,721535,0,0,0,0,0,15-item,721536,0,0,0,0,0,15
rew=item,1088001,0,0,0,0,0,5-item,1088001,0,0,0,0,0,10-item,1088000,0,0,0,0,0,1-item,1088000,0,0,0,0,0,1

where am i going wrong

i also noticed when i tried to spawn items using my compiled version i have to use the next item in the list to spawn the previous for example clouddiamond spawns me a stardiamond and star spawns a moon and so on think i need a fixed one


Ill release my full npc diag file when im done so far ive done birth village some of tc and some of market
07/11/2008 00:02 Tangaroa#1765
Quote:
Originally Posted by keving View Post
For what an Command lol?

My COmmand /players show currently how many Players are online but i need event to remove them from list if they disconnect -,-
:o Thats like the simplest command to add. Put this in your chat.cs

Quote:
if (Splitter[0] == "/players")
{
TheClient.SendPacket(ThePackets.SendMsg(TheClient. MessageId, "System", TheClient.MyChar.CharName, ("There are " + WorldHandler.AllClients.Count + " Players Online!"), 2000));
return true;
}
07/11/2008 00:22 stephanyd#1766
Quote:
Originally Posted by imunknown View Post
to drop normal +1 items, use the itemID of a normal item, for example:

1002-111303-1-0-0-0-0-30

Will drop a normal +1 IronHelmet in the TC map.

COItems.txt has lists of item ID's, going from lowest normal, to super per ID.
Thank you very much.. it will work:D;)

Here is my dialog for prizeNPC... exchange PointCard for DB Scroll :)
07/11/2008 00:29 ~Yuki~#1767
if (Splitter[0] == "/players")
{
TheClient.SendPacket(ThePackets.SendMsg(TheClient. MessageId, "System", TheClient.MyChar.CharName, ("There are " + WorldHandler.AllClients.Count + " Players Online!"), 2000));
return true;
}

HaHA works fine thx a lot!
07/11/2008 00:43 stephanyd#1768
Quote:
Originally Posted by Tangaroa View Post
:o Thats like the simplest command to add. Put this in your chat.cs
I added the code in CHat.cs... any command to type?:confused:
07/11/2008 00:45 Some-Guy#1769
Quote:
Originally Posted by stephanyd View Post
I added the code in CHat.cs... any command to type?:confused:
if (Splitter[0] == "/players")

The bold bit gives a clue :)
07/11/2008 00:49 stephanyd#1770
Quote:
Originally Posted by Some-Guy View Post
if (Splitter[0] == "/players")

The bold bit gives a clue :)
ok... when i type /players no message appears:(