|
You last visited: Today at 18:05
Advertisement
[FAQ] HellmouthSource
Discussion on [FAQ] HellmouthSource within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
03/15/2011, 01:17
|
#91
|
elite*gold: 0
Join Date: May 2006
Posts: 297
Received Thanks: 58
|
my client stucks @ creating the character.
after choosing monk/w.e class, i keeps loading, loading, loading, etc!
i use the client used in your example
[vers 5358]
coloader V5
|
|
|
03/15/2011, 01:22
|
#92
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
Close out the client and try again.
I thought i disconnect on receiving the char create packet and executing the new char to db successfully but I could be wrong.
|
|
|
03/15/2011, 09:01
|
#93
|
elite*gold: 0
Join Date: May 2008
Posts: 1
Received Thanks: 0
|
Hello , i've test your source , i like her and i wish create my server for play with my friends , but they can't connect in my server , can you help me please ? thanks. 
|
|
|
03/15/2011, 09:50
|
#94
|
elite*gold: 0
Join Date: Apr 2009
Posts: 101
Received Thanks: 1
|
i love pro4never and thank you
|
|
|
03/15/2011, 13:17
|
#95
|
elite*gold: 0
Join Date: Apr 2009
Posts: 49
Received Thanks: 3
|
Post The Download xampp Plzzz
|
|
|
03/15/2011, 13:22
|
#96
|
elite*gold: 0
Join Date: Aug 2010
Posts: 93
Received Thanks: 18
|
Theres a video posted in his FAQ how to set up the source up,
might take a look at that.
|
|
|
03/15/2011, 22:16
|
#97
|
elite*gold: 0
Join Date: Aug 2010
Posts: 992
Received Thanks: 1,110
|
is there any way to avoid that DmapHandler/loader high memory usage ?
it takes more than 130 MB's as long as the server is running !
|
|
|
03/16/2011, 01:52
|
#98
|
elite*gold: 0
Join Date: Aug 2008
Posts: 94
Received Thanks: 19
|
Hello ... i know u would say go learn  , but i was trying to code a new NPC , and wanted to check if the Item ( db for example ) is placed in inventory or not , so i put code like
" client.inventory.inventorykey(xx.uid) ....
coz i wasnt able to do it with but the problem was the uid is changed .. so i wanted a help to know how can i do it with the ID instead . coz when i used the thing like
Struct.ItemInfo xx = new Struct.ItemInfo();
xx.ID = 1088000;
it still wasnt work good , so please i need some clue  how to check if the inventory contain some item ( db for example )
|
|
|
03/16/2011, 02:42
|
#99
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
Quote:
Originally Posted by romeoromeo
Hello ... i know u would say go learn  , but i was trying to code a new NPC , and wanted to check if the Item ( db for example ) is placed in inventory or not , so i put code like
" client.inventory.inventorykey(xx.uid) ....
coz i wasnt able to do it with but the problem was the uid is changed .. so i wanted a help to know how can i do it with the ID instead . coz when i used the thing like
Struct.ItemInfo xx = new Struct.ItemInfo();
xx.ID = 1088000;
it still wasnt work good , so please i need some clue  how to check if the inventory contain some item ( db for example )
|
There are already has item bools in the character, remove item and add item methods also are contained.
IE:
if(Client.HasItem(DragonBallID, Amount)):
do w/e
|
|
|
03/16/2011, 03:13
|
#100
|
elite*gold: 0
Join Date: Aug 2008
Posts: 94
Received Thanks: 19
|
Quote:
There are already has item bools in the character, remove item and add item methods also are contained.
IE:
if(Client.HasItem(DragonBallID, Amount)):
do w/e
|
Thanks alot
here i added the Oven and VIP bank . hope it helpeds the newbies programers ( like me xD )
Quote:
#region WuxingOven
case 35016:
{
switch (LinkBack)
{
case 0:
{
Text("Compose or Enchant?", Client);
Link("Compose", 1, Client);
Link("Enchant", 2, Client);
Finish(Client);
}
return;
case 1:
{
Client.Send(Packets.GeneralData(Client.UID, 1, Client.X, Client.Y, 0x7e));
}
return;
case 2:
{
Client.Send(Packets.GeneralData(Client.UID, 0x443, Client.X, Client.Y, 116));
}
return;
}
return;
}
#endregion
#region VIP WarehouseNPC
case 12:
{
switch (LinkBack)
{
case 0:
{
Client.Send(Packets.GeneralData(Client.UID, 341, Client.X, Client.Y, 0x7e));
}
return;
}
return;
}
#endregion
|
|
|
|
03/16/2011, 04:49
|
#101
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
Still not using external npcs? xD
Either way, useful for nubs to have as reference.
|
|
|
03/16/2011, 07:15
|
#102
|
elite*gold: 0
Join Date: Aug 2008
Posts: 94
Received Thanks: 19
|
Quote:
Originally Posted by pro4never
Still not using external npcs? xD
Either way, useful for nubs to have as reference.
|
 ... i tried but failed , i was able to make external npcs for teleport or add items but failed to make it show packages like . oven or wearhousman or so on. im still newbie 
so im going to use the external quests for the events like chinese year , children day , so on ....
|
|
|
03/16/2011, 18:01
|
#103
|
elite*gold: 0
Join Date: Jan 2011
Posts: 63
Received Thanks: 1
|
yo, i need some help plz, when i put the .sql file in Navicat it gives me error, and if i choose the option "Continue On Errors" is says there are round 1800-1900 errors!
the only thing i can see in the table is portals!
PLZ HELP ME!
|
|
|
03/16/2011, 18:13
|
#104
|
elite*gold: 21
Join Date: Jul 2005
Posts: 9,193
Received Thanks: 5,380
|
Read the thread... you need to have innodb enabled.
Install xamp/mysql server so it's enabled by default or -reinstall apserver and make sure you tick the box for it this time.
|
|
|
03/16/2011, 19:00
|
#105
|
elite*gold: 0
Join Date: Jan 2011
Posts: 63
Received Thanks: 1
|
Quote:
Originally Posted by pro4never
Read the thread... you need to have innodb enabled.
Install xamp/mysql server so it's enabled by default or -reinstall apserver and make sure you tick the box for it this time.
|
so you want me to download!
Xamp
-reinstall appserver
--
when i alleredy have Navicat? :O
|
|
|
All times are GMT +1. The time now is 18:05.
|
|