Redux v2 - Official 5065 Classic Source

12/04/2013 12:40 Aceking#406
Server may have crashed or got hung up on something....
Or issues with the server itself

Just guesses, I am sure Pro will fix it when he gets on next
12/04/2013 12:51 mujake#407
Its something that happens during the day, this morning i connected just fine, same for yesterday, he's working on the source probably.
12/04/2013 13:19 Aceking#408
No the development source and source used for the server are kept separate and updating only takes seconds.

On a side note, I added the whisper info.
Level, spouse, avatars etc all show.
BP is not accurate yet, that will come later as nothing calculates BP as of right now.

Probably also add nobility if I can find where it goes in the structure.

Also added online training back as it disappeared somehow.
12/04/2013 15:41 mujake#409
Looking forward for newer versions but until them i am learning by coding NPCs on the v2.85. Basic ones like CPAdmin, MillionaireLee, some to teleport you i might even try the one in Bi witch sockets weapons.
12/04/2013 17:47 pro4never#410
restarted server with the newest changes.

Keep in mind the entire point of hosting it currently is to track down bugs. As such any time the server runs into an exception it will be offline till I have a chance to look into it.
12/04/2013 18:39 CriticallyDev#411
Did you get to the hp bug at character creation?
[Only registered and activated users can see links. Click Here To Register...]
12/04/2013 18:55 pro4never#412
Quote:
Originally Posted by CriticallyDev View Post
Did you get to the hp bug at character creation?
[Only registered and activated users can see links. Click Here To Register...]
Has been fixed for ages

<edit>

-Fixed a crash bug where combat logic would not clear dead targets sometimes. Was trying to attack a null entity.
12/05/2013 00:45 Aceking#413
Whisper box is now complete with full information:rolleyes:

You will see it upon the next update
12/06/2013 08:47 SteelHelix#414
I loaded up navicat premium and I am unsuccessful in processing the backup sql. Any known quick fixes?
12/06/2013 08:56 Spirited#415
Quote:
Originally Posted by SteelHelix View Post
I loaded up navicat premium and I am unsuccessful in processing the backup sql. Any known quick fixes?
Yes. Download MySQL Workbench and stop trying to pirate software.
12/06/2013 09:10 mujake#416
Here are few NPCs i coded maybe they will be helpful :
CPAdmin


Jail warden to let you exit jail


And MillionaireLee (it works but i can't manage to give _count value 10 and if you have lower than 10 meteors it will still give you an scroll)





I am aware this codes can be improved as i am constantly learning.

For the live server I noticed :
- Hercules seems to not function properly (i have 2 blades one is blessed ) it drains the reqiured stamina but it don't damage monsters not even the effect works
- Broadcast (probably not coded yet)
- Seems like it won't recognize scepters as weapons, i get the message : Could not load script for item ID : 481003 (lvl 5 one scepter) but it does this for all of them
- BlackTulip ()but i think you already know, not coded most likely)
I ill keep testing today as i am home and i'll keep editing this post
12/06/2013 09:11 LordGragen.#417
Pro4Never
Aceking
Turk

you 3 did wonderful job on this source, very cool.
12/06/2013 09:27 mujake#418
Quote:
Originally Posted by Fang View Post
Yes. Download MySQL Workbench and stop trying to pirate software.
He probably used appserv for mysql, i have navicat premium pirated and it worked even with appserv , too lazy to install mysql community server.
Possibly he didn't enabled InnoDB support at installing appserv.I always check that box so there won't be problems.
12/06/2013 12:34 Aceking#419
Quote:
Originally Posted by mujake View Post
Here are few NPCs i coded maybe they will be helpful :

And MillionaireLee (it works but i can't manage to give _count value 10 and if you have lower than 10 meteors it will still give you an scroll)





I am aware this codes can be improved as i am constantly learning.

For the live server I noticed :
- Hercules seems to not function properly (i have 2 blades one is blessed ) it drains the reqiured stamina but it don't damage monsters not even the effect works
- Broadcast (probably not coded yet)
- Seems like it won't recognize scepters as weapons, i get the message : Could not load script for item ID : 481003 (lvl 5 one scepter) but it does this for all of them
- BlackTulip ()but i think you already know, not coded most likely)
I ill keep testing today as i am home and i'll keep editing this post
Here, this is a little better. You were close, you were just only checking to see if they had 1 of the item, rather than 10.

Also, I just fixed scepter's, that will come in the next source update for the live server.
Broadcast and Blacktulip's aren't coded yet either....


<EDIT>

Just fixed hercules too, again will work on the next source update. Well, whenever the database is updated actually.
12/06/2013 13:23 mujake#420
Quote:
Originally Posted by Aceking View Post
Here, this is a little better. You were close, you were just only checking to see if they had 1 of the item, rather than 10.

Also, I just fixed scepter's, that will come in the next source update for the live server.
Broadcast and Blacktulip's aren't coded yet either....


<EDIT>

Just fixed hercules too, again will work on the next source update. Well, whenever the database is updated actually.
I am glad i could help, i was so damn close though...i mean i was doing
if (_client.HasItem(1088001, 10)) ...and was annoying because it was keep telling that i don't have 10.

using if (_client.HasItem(1088000), 10)//Check if they have at least 10 will pop up some errors regarding invalid expression term "," , expected ")" and expected ";" .