• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

[SOLVED] Help with my script

Status
Not open for further replies.

Jameyboor

Retired Staff
#1. in the first ongossip function, you define a Player pointer, called player, but you use it in the code as : Player instead of player, which will result in lots of errors, this is the same for the Creature pointer.

#2. in the second ongossip function, you don't define the Player or Creature pointers at all, you comment them out /*player*/, so remove the /*'s from all the arguments and you will be one step further, but still with some Player and Creature pointer errors, these are fixed ( just as in #1 ) by instead of typing Player and Creature, using player and creature.
 
Last edited:

Tommy

Founder
After each case value, it is required to have a colon ":" (without quotations) at the end of it.

Example, you have:

Code:
case GOSSIP_ACTION_INFO_DEF+2

And it should be like:

Code:
case GOSSIP_ACTION_INFO_DEF+2[COLOR=#00ff00]:[/COLOR]

Looks like all of them doesn't have it. :/
 
Last edited:

brh11

Respected Member
My Reply didn't post lol.But thank you so much Tommy.Fixing all these errors made me understand some stuff so that's a bonus :)you're the best thank you
 
Status
Not open for further replies.
Top